/*
 * BOOTSTRAP 5 IZGARA (GRID) SİSTEMİ CSS KODLARI
 * Bu kod, Bootstrap'in .col- ile başlayan tüm sınıflarını ve
 * bu sınıfların çalışması için gereken temel .container ve .row yapılarını içerir.
 */

/* 1. TEMEL YAPI VE DEĞİŞKENLER */

/* Genel gap sınıfı */

/* ==========================
   GAP / GUTTER UTILITIES
   - .g-*  : grid gutter (row + cols) tarzı davranış (padding+neg margin)
   - .gx-* : sadece yatay gutter (column-gap tipi row manipülasyonu)
   - .gy-* : sadece dikey gutter
   - .gap-*: doğrudan CSS gap / row-gap / column-gap utilities (flex/grid containers)
   - responsive: .g-sm-3, .gap-md-2, vb.
   ========================== */

/* --- Değer skalası (Bootstrap ile uyumlu) --- */
:root {
  --gap-0: 0;
  --gap-1: 0.25rem; /*4px*/
  --gap-2: 0.5rem; /*8px*/
  --gap-3: 1rem; /*16px*/
  --gap-4: 1.5rem; /*24px*/
  --gap-5: 3rem; /*48px*/
}

.my-shopify-row {
  --bs-gutter-x: 1.5rem; /* default, override eden sınıf yoksa */
  --bs-gutter-y: 0;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  row-gap: var(--bs-gutter-y);
}
.my-shopify-row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-top: calc(var(--bs-gutter-y) * 0.5);
  padding-bottom: calc(var(--bs-gutter-y) * 0.5);
}

/* g-* : tüm yönlerde (x ve y) gutter ayarlar */
.my-shopify-g-0 {
  --bs-gutter-x: var(--gap-0);
  --bs-gutter-y: var(--gap-0) !important;
}
.my-shopify-g-1 {
  --bs-gutter-x: var(--gap-1);
  --bs-gutter-y: var(--gap-1) !important;
}
.my-shopify-g-2 {
  --bs-gutter-x: var(--gap-2);
  --bs-gutter_y: var(--gap-2) !important;
}
.my-shopify-g-3 {
  --bs-gutter-x: var(--gap-3);
  --bs-gutter-y: var(--gap-3) !important;
}
.my-shopify-g-4 {
  --bs-gutter-x: var(--gap-4);
  --bs-gutter-y: var(--gap-4) !important;
}
.my-shopify-g-5 {
  --bs-gutter-x: var(--gap-5);
  --bs-gutter-y: var(--gap-5) !important;
}

/* gx-* : sadece yatay (x) gutter */
.my-shopify-gx-0 {
  --bs-gutter-x: var(--gap-0) !important;
}
.my-shopify-gx-1 {
  --bs-gutter-x: var(--gap-1) !important;
}
.my-shopify-gx-2 {
  --bs-gutter-x: var(--gap-2) !important;
}
.my-shopify-gx-3 {
  --bs-gutter-x: var(--gap-3) !important;
}
.my-shopify-gx-4 {
  --bs-gutter-x: var(--gap-4) !important;
}
.my-shopify-gx-5 {
  --bs-gutter-x: var(--gap-5) !important;
}

/* gy-* : sadece dikey (y) gutter */
.my-shopify-gy-0 {
  --bs-gutter-y: var(--gap-0) !important;
}
.my-shopify-gy-1 {
  --bs-gutter-y: var(--gap-1) !important;
}
.my-shopify-gy-2 {
  --bs-gutter-y: var(--gap-2) !important;
}
.my-shopify-gy-3 {
  --bs-gutter-y: var(--gap-3) !important;
}
.my-shopify-gy-4 {
  --bs-gutter-y: var(--gap-4) !important;
}
.my-shopify-gy-5 {
  --bs-gutter-y: var(--gap-5) !important;
}

/* small fix: row negative margin for y-direction when gy-* used */
.my-shopify-row[style*="--bs-gutter-y"] {
  margin-top: calc(var(--bs-gutter-y) * -0.5);
  margin-bottom: calc(var(--bs-gutter-y) * -0.5);
}

/* -------------------------------------------------
     2) DOĞRUDAN GAP UTILITIES (Flex / Grid containers)
     ------------------------------------------------- */
/* Tüm yönlerde gap */
.my-shopify-gap-0 {
  gap: var(--gap-0) !important;
}
.my-shopify-gap-1 {
  gap: var(--gap-1) !important;
}
.my-shopify-gap-2 {
  gap: var(--gap-2) !important;
}
.my-shopify-gap-3 {
  gap: var(--gap-3) !important;
}
.my-shopify-gap-4 {
  gap: var(--gap-4) !important;
}
.my-shopify-gap-5 {
  gap: var(--gap-5) !important;
}

/* Sadece yatay gap (column-gap) */
.my-shopify-gapx-0,
.my-shopify-gap-x-0,
.my-shopify-gap--x-0 {
  column-gap: var(--gap-0) !important;
} /* alternatif isimlendirmeler */
.my-shopify-gapx-1,
.my-shopify-gap-x-1,
.my-shopify-gap--x-1 {
  column-gap: var(--gap-1) !important;
}
.my-shopify-gapx-2,
.my-shopify-gap-x-2,
.my-shopify-gap--x-2 {
  column-gap: var(--gap-2) !important;
}
.my-shopify-gapx-3,
.my-shopify-gap-x-3,
.my-shopify-gap--x-3 {
  column-gap: var(--gap-3) !important;
}
.my-shopify-gapx-4,
.my-shopify-gap-x-4,
.my-shopify-gap--x-4 {
  column-gap: var(--gap-4) !important;
}
.my-shopify-gapx-5,
.my-shopify-gap-x-5,
.my-shopify-gap--x-5 {
  column-gap: var(--gap-5) !important;
}

/* Sadece dikey gap (row-gap) */
.my-shopify-gapy-0,
.my-shopify-gap-y-0 {
  row-gap: var(--gap-0) !important;
}
.my-shopify-gapy-1,
.my-shopify-gap-y-1 {
  row-gap: var(--gap-1) !important;
}
.my-shopify-gapy-2,
.my-shopify-gap-y-2 {
  row-gap: var(--gap-2) !important;
}
.my-shopify-gapy-3,
.my-shopify-gap-y-3 {
  row-gap: var(--gap-3) !important;
}
.my-shopify-gapy-4,
.my-shopify-gap-y-4 {
  row-gap: var(--gap-4) !important;
}
.my-shopify-gapy-5,
.my-shopify-gap-y-5 {
  row-gap: var(--gap-5) !important;
}

/* Bootstrap'in default gap isimlendirmesi de .gx- / .gy- olabilir, bu yüzden destekliyoruz */
.my-shopify-gx-0 {
  column-gap: var(--gap-0) !important;
}
.my-shopify-gx-1 {
  column-gap: var(--gap-1) !important;
}
.my-shopify-gx-2 {
  column-gap: var(--gap-2) !important;
}
.my-shopify-gx-3 {
  column-gap: var(--gap-3) !important;
}
.my-shopify-gx-4 {
  column-gap: var(--gap-4) !important;
}
.my-shopify-gx-5 {
  column-gap: var(--gap-5) !important;
}

.my-shopify-gy-0 {
  row-gap: var(--gap-0) !important;
}
.my-shopify-gy-1 {
  row-gap: var(--gap-1) !important;
}
.my-shopify-gy-2 {
  row-gap: var(--gap-2) !important;
}
.my-shopify-gy-3 {
  row-gap: var(--gap-3) !important;
}
.my-shopify-gy-4 {
  row-gap: var(--gap-4) !important;
}
.my-shopify-gy-5 {
  row-gap: var(--gap-5) !important;
}

/* -------------------------------------------------
     3) RESPONSIVE VERSİYONLAR
     .g-sm-3, .gx-md-2, .gap-lg-4 vb.
     Breakpointler: sm=576, md=768, lg=992, xl=1200, xxl=1400
     ------------------------------------------------- */

/* SM */

/* =================================================
     Kullanım notları:
     - Grid gutter (Bootstrap tarzı): <div class="my-shopify-row my-shopify-g-3"> ... </div>
     - Sadece yatay: <div class="my-shopify-row my-shopify-gx-2"> ... </div>
     - Sadece dikey: <div class="my-shopify-row my-shopify-gy-1"> ... </div>
     - Doğrudan gap (herhangi bir flex/grid container): <div class="d-flex my-shopify-gap-3"> ... </div>
     - Responsive örnek: <div class="my-shopify-row my-shopify-g-1 my-shopify-g-md-3"> ... </div>
     - Eğer Bootstrap'in kendi CSS'i üst üste geliyorsa bu dosyayı Bootstrap'ten sonra linkle veya sınıflarda !important kullan.
     ================================================= */

:root {
  --bs-gutter-x: 1.5rem; /* Sütunlar arası yatay boşluk */
  --bs-gutter-y: 0; /* Sütunlar arası dikey boşluk */
}

.my-shopify-container {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.my-shopify-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.my-shopify-row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* 2. TEMEL SÜTUN SINIFLARI (Tüm Ekran Boyutları İçin) */

/* Otomatik genişleyen sütun */
.my-shopify-col {
  flex: 1 0 0%;
}

/* İçeriği kadar yer kaplayan sütun */
.my-shopify-col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* Sayısal sütunlar (1'den 12'ye kadar) */
.my-shopify-col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.my-shopify-col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.my-shopify-col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.my-shopify-col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.my-shopify-col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.my-shopify-col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.my-shopify-col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.my-shopify-col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.my-shopify-col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.my-shopify-col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.my-shopify-col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.my-shopify-col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* 3. DUYARLI (RESPONSIVE) SÜTUN SINIFLARI */

/*
   * BOOTSTRAP 5 MARGIN YARDIMCI SINIFLARI
   * Bu kod, Bootstrap'in 'm-', 'mt-', 'mb-', 'ms-', 'me-', 'mx-', 'my-'
   * ile başlayan tüm sınıflarının CSS karşılıklarını içerir.
   */

/* --- 1. Temel Margin Sınıfları (Tüm Ekran Boyutları İçin) --- */

.my-shopify-m-0 {
  margin: 0 !important;
}
.my-shopify-m-1 {
  margin: 0.25rem !important;
}
.my-shopify-m-2 {
  margin: 0.5rem !important;
}
.my-shopify-m-3 {
  margin: 1rem !important;
}
.my-shopify-m-4 {
  margin: 1.5rem !important;
}
.my-shopify-m-5 {
  margin: 3rem !important;
}
.my-shopify-m-auto {
  margin: auto !important;
}

.my-shopify-mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.my-shopify-mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.my-shopify-mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.my-shopify-mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-shopify-mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.my-shopify-mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.my-shopify-mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-shopify-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-shopify-my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-shopify-my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-shopify-my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-shopify-my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-shopify-my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-shopify-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.my-shopify-mt-0 {
  margin-top: 0 !important;
}
.my-shopify-mt-1 {
  margin-top: 0.25rem !important;
}
.my-shopify-mt-2 {
  margin-top: 0.5rem !important;
}
.my-shopify-mt-3 {
  margin-top: 1rem !important;
}
.my-shopify-mt-4 {
  margin-top: 1.5rem !important;
}
.my-shopify-mt-5 {
  margin-top: 3rem !important;
}
.my-shopify-mt-auto {
  margin-top: auto !important;
}

.my-shopify-mb-0 {
  margin-bottom: 0 !important;
}
.my-shopify-mb-1 {
  margin-bottom: 0.25rem !important;
}
.my-shopify-mb-2 {
  margin-bottom: 0.5rem !important;
}
.my-shopify-mb-3 {
  margin-bottom: 1rem !important;
}
.my-shopify-mb-4 {
  margin-bottom: 1.5rem !important;
}
.my-shopify-mb-5 {
  margin-bottom: 3rem !important;
}
.my-shopify-mb-auto {
  margin-bottom: auto !important;
}

/* ms = margin-start (soldan boşluk) */
.my-shopify-ms-0 {
  margin-left: 0 !important;
}
.my-shopify-ms-1 {
  margin-left: 0.25rem !important;
}
.my-shopify-ms-2 {
  margin-left: 0.5rem !important;
}
.my-shopify-ms-3 {
  margin-left: 1rem !important;
}
.my-shopify-ms-4 {
  margin-left: 1.5rem !important;
}
.my-shopify-ms-5 {
  margin-left: 3rem !important;
}
.my-shopify-ms-auto {
  margin-left: auto !important;
}

/* me = margin-end (sağdan boşluk) */
.my-shopify-me-0 {
  margin-right: 0 !important;
}
.my-shopify-me-1 {
  margin-right: 0.25rem !important;
}
.my-shopify-me-2 {
  margin-right: 0.5rem !important;
}
.my-shopify-me-3 {
  margin-right: 1rem !important;
}
.my-shopify-me-4 {
  margin-right: 1.5rem !important;
}
.my-shopify-me-5 {
  margin-right: 3rem !important;
}
.my-shopify-me-auto {
  margin-right: auto !important;
}

/* --- 2. Duyarlı (Responsive) Margin Sınıfları --- */

/*
   * BOOTSTRAP 5 IZGARA (GRID) SİSTEMİ - TÜM DETAYLARIYLA
   * Bu kod, .container, .row ve .col-* sınıflarının eksiksiz yapısını içerir.
   */

/* 1. TEMEL YAPI VE DEĞİŞKENLER */
:root {
  /* Sütunlar arası yatay boşluğun varsayılan değeri */
  --bs-gutter-x: 1.5rem;
  /* Sütunlar arası dikey boşluğun varsayılan değeri */
  --bs-gutter-y: 0;
}

/* 2. KONTEYNER (.container) - SAHNE ALANI */
.my-shopify-container {
  width: 100%;
  /* Konteynerin iç kenar boşlukları. .row'un negatif margini ile hizalanır. */
  padding-right: calc(var(--bs-gutter-x) * 0.5); /* 0.75rem */
  padding-left: calc(var(--bs-gutter-x) * 0.5); /* 0.75rem */
  margin-right: auto;
  margin-left: auto;
}

/* 3. SATIR (.row) - FLEX KONTEYNER VE IZGARA SİHRİ */
.my-shopify-row {
  /* Flexbox'ı aktive eder, içindeki .col'ler yan yana dizilir. */
  display: flex;
  /* Sütunlar 12 birimi aşarsa alt satıra kaydırır. */
  flex-wrap: wrap;
  /* Dikey boşluk için kullanılır. */
  margin-top: calc(-1 * var(--bs-gutter-y));
  /* NEGATİF MARGIN SİHRİ:
       .container'ın iç boşluğunu ve kenardaki sütunların dışa bakan
       boşluğunu sıfırlamak için satırı dışarı doğru çeker.
     */
  margin-right: calc(-0.5 * var(--bs-gutter-x)); /* -0.75rem */
  margin-left: calc(-0.5 * var(--bs-gutter-x)); /* -0.75rem */
}

/* .row'un içindeki tüm direkt çocuklara (sütunlara) uygulanır */
.my-shopify-row > * {
  box-sizing: border-box; /* Padding ve border'ı genişliğe dahil eder */
  flex-shrink: 0;
  width: 100%; /* Mobil öncelikli yaklaşım, varsayılan olarak tam genişlik */
  max-width: 100%;
  /* SÜTUN BOŞLUĞU (GUTTER):
       Her sütunun sağına ve soluna verilen bu boşluklar,
       yan yana geldiklerinde aradaki toplam boşluğu oluşturur.
     */
  padding-right: calc(var(--bs-gutter-x) * 0.5); /* 0.75rem */
  padding-left: calc(var(--bs-gutter-x) * 0.5); /* 0.75rem */
  margin-top: var(--bs-gutter-y);
}

/* 4. SÜTUNLAR (.col-*) - İÇERİK TAŞIYICILARI */

/* --- Temel Sütun Sınıfları (Tüm Ekranlar) --- */
.my-shopify-col {
  flex: 1 0 0%;
}
.my-shopify-col-auto {
  flex: 0 0 auto;
  width: auto;
}
.my-shopify-col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.my-shopify-col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.my-shopify-col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.my-shopify-col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.my-shopify-col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.my-shopify-col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.my-shopify-col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.my-shopify-col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.my-shopify-col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.my-shopify-col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.my-shopify-col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.my-shopify-col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* --- Duyarlı (Responsive) Sütunlar ve Konteyner Genişlikleri --- */

/*
   * BOOTSTRAP 5 DISPLAY YARDIMCI SINIFLARI
   * Bu kod, Bootstrap'in 'd-' ile başlayan tüm sınıflarının
   * (d-none, d-flex, d-md-block vb.) CSS karşılıklarını içerir.
   */

/* --- 1. Temel Display Sınıfları (Tüm Ekran Boyutları İçin) --- */

.my-shopify-d-none {
  display: none !important;
}
.my-shopify-d-inline {
  display: inline !important;
}
.my-shopify-d-inline-block {
  display: inline-block !important;
}
.my-shopify-d-block {
  display: block !important;
}
.my-shopify-d-grid {
  display: grid !important;
}
.my-shopify-d-table {
  display: table !important;
}
.my-shopify-d-table-row {
  display: table-row !important;
}
.my-shopify-d-table-cell {
  display: table-cell !important;
}
.my-shopify-d-flex {
  display: flex !important;
}
.my-shopify-d-inline-flex {
  display: inline-flex !important;
}

.my-shopify-d-flex {
  display: flex !important;
}
.my-shopify-d-inline-flex {
  display: inline-flex !important;
}

/* --- 2. YÖN (FLEX DIRECTION) --- */
.my-shopify-flex-row {
  flex-direction: row !important;
}
.my-shopify-flex-row-reverse {
  flex-direction: row-reverse !important;
}
.my-shopify-flex-column {
  flex-direction: column !important;
}
.my-shopify-flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* --- 3. YATAY HİZALAMA (JUSTIFY CONTENT) --- */
.my-shopify-justify-content-start {
  justify-content: flex-start !important;
}
.my-shopify-justify-content-end {
  justify-content: flex-end !important;
}
.my-shopify-justify-content-center {
  justify-content: center !important;
}
.my-shopify-justify-content-between {
  justify-content: space-between !important;
}
.my-shopify-justify-content-around {
  justify-content: space-around !important;
}
.my-shopify-justify-content-evenly {
  justify-content: space-evenly !important;
}

/* --- 4. DİKEY HİZALAMA (ALIGN ITEMS) --- */
.my-shopify-align-items-start {
  align-items: flex-start !important;
}
.my-shopify-align-items-end {
  align-items: flex-end !important;
}
.my-shopify-align-items-center {
  align-items: center !important;
}
.my-shopify-align-items-baseline {
  align-items: baseline !important;
}
.my-shopify-align-items-stretch {
  align-items: stretch !important;
}

/* --- 5. TEKİL ELEMAN HİZALAMA (ALIGN SELF) --- */
.my-shopify-align-self-start {
  align-self: flex-start !important;
}
.my-shopify-align-self-end {
  align-self: flex-end !important;
}
.my-shopify-align-self-center {
  align-self: center !important;
}
.my-shopify-align-self-baseline {
  align-self: baseline !important;
}
.my-shopify-align-self-stretch {
  align-self: stretch !important;
}
.my-shopify-align-self-auto {
  align-self: auto !important;
}

/* --- 6. BÜYÜME VE KÜÇÜLME (GROW & SHRINK) --- */
.my-shopify-flex-fill {
  flex: 1 1 auto !important;
}
.my-shopify-flex-grow-0 {
  flex-grow: 0 !important;
}
.my-shopify-flex-grow-1 {
  flex-grow: 1 !important;
}
.my-shopify-flex-shrink-0 {
  flex-shrink: 0 !important;
}
.my-shopify-flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* --- 7. SATIRA SIĞDIRMA (WRAP) --- */
.my-shopify-flex-nowrap {
  flex-wrap: nowrap !important;
}
.my-shopify-flex-wrap {
  flex-wrap: wrap !important;
}
.my-shopify-flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* --- 8. SIRALAMA (ORDER) --- */
.my-shopify-order-first {
  order: -1 !important;
}
.my-shopify-order-0 {
  order: 0 !important;
}
.my-shopify-order-1 {
  order: 1 !important;
}
.my-shopify-order-2 {
  order: 2 !important;
}
.my-shopify-order-3 {
  order: 3 !important;
}
.my-shopify-order-4 {
  order: 4 !important;
}
.my-shopify-order-5 {
  order: 5 !important;
}
.my-shopify-order-last {
  order: 6 !important;
}

/* --- 9. SATIRLARI HİZALAMA (ALIGN CONTENT) --- */
.my-shopify-align-content-start {
  align-content: flex-start !important;
}
.my-shopify-align-content-end {
  align-content: flex-end !important;
}
.my-shopify-align-content-center {
  align-content: center !important;
}
.my-shopify-align-content-between {
  align-content: space-between !important;
}
.my-shopify-align-content-around {
  align-content: space-around !important;
}
.my-shopify-align-content-stretch {
  align-content: stretch !important;
}

/*
   * BOOTSTRAP 5 POSITION YARDIMCI SINIFLARI
   * Bu kod, Bootstrap'in konumlandırma ile ilgili tüm sınıflarının
   * ('position-relative', 'top-0', 'start-50', 'fixed-top' vb.)
   * CSS karşılıklarını içerir.
   */

/* --- 1. Temel Konumlandırma Değerleri (Position Values) --- */

.my-shopify-position-static {
  position: static !important;
}
.my-shopify-position-relative {
  position: relative !important;
}
.my-shopify-position-absolute {
  position: absolute !important;
}
.my-shopify-position-fixed {
  position: fixed !important;
}
.my-shopify-position-sticky {
  /* Safari için ön ekli versiyon */
  position: -webkit-sticky !important;
  position: sticky !important;
}

/* --- 2. Konumlandırma Kenar Değerleri (Edge Positions) --- */

/* Bu sınıflar position: static olmayan elemanları konumlandırmak için kullanılır.
     start: left (soldan), end: right (sağdan) anlamına gelir.
  */

.my-shopify-top-0 {
  top: 0 !important;
}
.my-shopify-top-50 {
  top: 50% !important;
}
.my-shopify-top-100 {
  top: 100% !important;
}

.my-shopify-bottom-0 {
  bottom: 0 !important;
}
.my-shopify-bottom-50 {
  bottom: 50% !important;
}
.my-shopify-bottom-100 {
  bottom: 100% !important;
}

.my-shopify-start-0 {
  left: 0 !important;
}
.my-shopify-start-50 {
  left: 50% !important;
}
.my-shopify-start-100 {
  left: 100% !important;
}

.my-shopify-end-0 {
  right: 0 !important;
}
.my-shopify-end-50 {
  right: 50% !important;
}
.my-shopify-end-100 {
  right: 100% !important;
}

/* --- 3. Ortalamak İçin Translate Yardımcıları --- */
/* Bu sınıflar bir elemanı kendi boyutunun %50'si kadar kaydırır.
     Genellikle 'top-50' ve 'start-50' ile birlikte mükemmel ortalama için kullanılır.
  */

.my-shopify-translate-middle {
  transform: translate(-50%, -50%) !important;
}
.my-shopify-translate-middle-x {
  transform: translateX(-50%) !important;
}
.my-shopify-translate-middle-y {
  transform: translateY(-50%) !important;
}

/* --- 4. Sabitlenmiş Konumlar (Fixed Positions) --- */

.my-shopify-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.my-shopify-fixed-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* --- 5. Yapışkan Konumlar (Sticky Positions) --- */
/*
     Bu sınıflar, elemanın kapsayıcısı içinde kaydırıldığında
     belirtilen kenara yapışmasını sağlar.
  */

.my-shopify-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.my-shopify-sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

/* --- Duyarlı (Responsive) Yapışkan Sınıflar --- */

/* --- SHADOWS (GÖLGELER) --- */

.my-shopify-shadow-none {
  box-shadow: none !important;
}
.my-shopify-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.my-shopify-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.my-shopify-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* --- SIZING (BOYUTLANDIRMA) --- */

/* Genişlik (Width) */
.my-shopify-w-25 {
  width: 25% !important;
}
.my-shopify-w-50 {
  width: 50% !important;
}
.my-shopify-w-75 {
  width: 75% !important;
}
.my-shopify-w-100 {
  width: 100% !important;
}
.my-shopify-w-auto {
  width: auto !important;
}

/* Yükseklik (Height) */
.my-shopify-h-25 {
  height: 25% !important;
}
.my-shopify-h-50 {
  height: 50% !important;
}
.my-shopify-h-75 {
  height: 75% !important;
}
.my-shopify-h-100 {
  height: 100% !important;
}
.my-shopify-h-auto {
  height: auto !important;
}

/* Maksimum Genişlik ve Yükseklik */
.my-shopify-mw-100 {
  max-width: 100% !important;
}
.my-shopify-mh-100 {
  max-height: 100% !important;
}

/* Görünüm Alanı (Viewport) Boyutları */
.my-shopify-min-vw-100 {
  min-width: 100vw !important;
}
.my-shopify-min-vh-100 {
  min-height: 100vh !important;
}
.my-shopify-vw-100 {
  width: 100vw !important;
}
.my-shopify-vh-100 {
  height: 100vh !important;
}

/* --- TEXT (METİN ÖZELLİKLERİ) --- */

/* Metin Hizalama (Text Align) */
.my-shopify-text-start {
  text-align: left !important;
}
.my-shopify-text-end {
  text-align: right !important;
}
.my-shopify-text-center {
  text-align: center !important;
}

/* Duyarlı Metin Hizalama */

/* Metin Sarma ve Kısaltma (Wrapping & Truncation) */
.my-shopify-text-wrap {
  white-space: normal !important;
}
.my-shopify-text-nowrap {
  white-space: nowrap !important;
}
.my-shopify-text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.my-shopify-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Metin Dönüşümü (Text Transform) */
.my-shopify-text-lowercase {
  text-transform: lowercase !important;
}
.my-shopify-text-uppercase {
  text-transform: uppercase !important;
}
.my-shopify-text-capitalize {
  text-transform: capitalize !important;
}

/* Yazı Tipi Boyutu (Font Size) */
.my-shopify-fs-1 {
  font-size: 2.5rem !important;
}
.my-shopify-fs-2 {
  font-size: 2rem !important;
}
.my-shopify-fs-3 {
  font-size: 1.75rem !important;
}
.my-shopify-fs-4 {
  font-size: 1.5rem !important;
}
.my-shopify-fs-5 {
  font-size: 1.25rem !important;
}
.my-shopify-fs-6 {
  font-size: 1rem !important;
}

.my-shopify-fw-lighter {
  font-weight: lighter !important;
}
.my-shopify-fw-light {
  font-weight: 300 !important;
}
.my-shopify-fw-normal {
  font-weight: 400 !important;
}
.my-shopify-fw-semibold {
  font-weight: 600 !important;
}
.my-shopify-fw-bold {
  font-weight: 700 !important;
}
.my-shopify-fw-bolder {
  font-weight: bolder !important;
}
.my-shopify-fst-italic {
  font-style: italic !important;
}
.my-shopify-fst-normal {
  font-style: normal !important;
}

/* Satır Yüksekliği (Line Height) */
.my-shopify-lh-1 {
  line-height: 1 !important;
}
.my-shopify-lh-sm {
  line-height: 1.25 !important;
}
.my-shopify-lh-base {
  line-height: 1.5 !important;
}
.my-shopify-lh-lg {
  line-height: 2 !important;
}

/* Diğer Metin Özellikleri */
.my-shopify-font-monospace {
  font-family: var(
    --bs-font-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace
  ) !important;
}
.my-shopify-text-reset {
  color: inherit !important;
}
.my-shopify-text-decoration-none {
  text-decoration: none !important;
}
.my-shopify-text-decoration-underline {
  text-decoration: underline !important;
}
.my-shopify-text-decoration-line-through {
  text-decoration: line-through !important;
}

/* Temel Metin Renkleri */
.my-shopify-text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important; /* Standart gri renk */
}
.my-shopify-text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.my-shopify-text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* --- BUTTONS (DÜĞMELER) --- */

/* Temel Düğme Stili */
.my-shopify-btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Devre Dışı Durumu */
.my-shopify-btn:disabled,
.my-shopify-btn.my-shopify-disabled {
  pointer-events: none;
  opacity: 0.65;
}

/* Renk Varyasyonları */
/* Primary */
.my-shopify-btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.my-shopify-btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.my-shopify-btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.my-shopify-btn-primary:active {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}

/* Secondary */
.my-shopify-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.my-shopify-btn-secondary:hover {
  background-color: #5c636a;
  border-color: #565e64;
}

/* Success */
.my-shopify-btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.my-shopify-btn-success:hover {
  background-color: #157347;
  border-color: #146c43;
}

/* Danger */
.my-shopify-btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.my-shopify-btn-danger:hover {
  background-color: #bb2d3b;
  border-color: #b02a37;
}

/* Warning */
.my-shopify-btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.my-shopify-btn-warning:hover {
  background-color: #ffca2c;
  border-color: #ffc720;
}

/* Info */
.my-shopify-btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.my-shopify-btn-info:hover {
  background-color: #31d2f2;
  border-color: #25cff2;
}

/* Light */
.my-shopify-btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.my-shopify-btn-light:hover {
  background-color: #f9fafb;
  border-color: #f9fafb;
}

/* Dark */
.my-shopify-btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.my-shopify-btn-dark:hover {
  background-color: #1c1f23;
  border-color: #1a1e21;
}

/* Link */
.my-shopify-btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.my-shopify-btn-link:hover {
  color: #0a58ca;
}

/* Anahat (Outline) Düğmeler */
.my-shopify-btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.my-shopify-btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.my-shopify-btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.my-shopify-btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
}
/* ... Diğer outline renkleri de aynı mantıkla devam eder ... */

/* Düğme Boyutları */
.my-shopify-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.my-shopify-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

/* --- CARDS (KARTLAR) --- */

/* Temel Kart Stili */
.my-shopify-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.375rem;
}

/* Kart Gövdesi */
.my-shopify-card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

/* Kart Başlığı ve Metni */
.my-shopify-card-title {
  margin-bottom: 0.5rem;
}
.my-shopify-card-text:last-child {
  margin-bottom: 0;
}

/* Kart Başlık Bölümü (Header) */
.my-shopify-card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}
.my-shopify-card-header:first-child {
  border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
}

/* Kart Altbilgi Bölümü (Footer) */
.my-shopify-card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.175);
}
.my-shopify-card-footer:last-child {
  border-radius: 0 0 calc(0.375rem - 1px) calc(0.375rem - 1px);
}

.my-shopify-card-img,
.my-shopify-card-img-top {
  width: 100%;
}
.my-shopify-card-img-top {
  border-top-left-radius: calc(0.375rem - 1px);
  border-top-right-radius: calc(0.375rem - 1px);
}
.my-shopify-card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.375rem - 1px);
  border-bottom-left-radius: calc(0.375rem - 1px);
}

/* Resim Üzeri Yazı */
.my-shopify-card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.375rem - 1px);
}

/* --- DROPDOWNS (AÇILIR MENÜLER) --- */

/* Temel Sarmalayıcı */
.my-shopify-dropdown {
  position: relative;
}

/* Açılır Menü Listesi */
.my-shopify-dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none; /* Varsayılan olarak gizli */
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.375rem;
}

/* Menüyü Gösteren Sınıf */
.my-shopify-show > .my-shopify-dropdown-menu {
  display: block;
}

/* Menü Öğesi */
.my-shopify-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.my-shopify-dropdown-item:hover,
.my-shopify-dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.my-shopify-dropdown-item.my-shopify-active,
.my-shopify-dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.my-shopify-dropdown-item.my-shopify-disabled,
.my-shopify-dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

/* Ayırıcı Çizgi */
.my-shopify-dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.175);
}

/* Menü Başlığı */
.my-shopify-dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* Açma/Kapama Düğmesi Oku */
.my-shopify-dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.my-shopify-dropdown-toggle:empty::after {
  margin-left: 0;
}

/* --- LIST GROUPS (LİSTE GRUPLARI) --- */

/* Temel Liste Grubu */
.my-shopify-list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.375rem;
}

/* Liste Öğesi */
.my-shopify-list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
/* Kenarlıkların üst üste binmesini engelleme */
.my-shopify-list-group-item + .my-shopify-list-group-item {
  border-top-width: 0;
}

/* Köşelerin yuvarlatılması */
.my-shopify-list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.my-shopify-list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

/* Aktif Durum */
.my-shopify-list-group-item.my-shopify-active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Devre Dışı Durumu */
.my-shopify-list-group-item.my-shopify-disabled,
.my-shopify-list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

/* Tıklanabilir Liste Öğeleri */
.my-shopify-list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.my-shopify-list-group-item-action:hover,
.my-shopify-list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* Kenarlıksız Liste Grubu */
.my-shopify-list-group-flush {
  border-radius: 0;
}
.my-shopify-list-group-flush > .my-shopify-list-group-item {
  border-width: 0 0 1px;
}
.my-shopify-list-group-flush > .my-shopify-list-group-item:last-child {
  border-bottom-width: 0;
}

/* Renk Varyasyonları */
.my-shopify-list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.my-shopify-list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.my-shopify-list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
/* ... Diğer renkler de aynı mantıkla devam eder ... */

/* Numaralı Liste Grubu */
.my-shopify-list-group-numbered {
  list-style-type: none;
  counter-reset: list-group-item;
}
.my-shopify-list-group-numbered > .my-shopify-list-group-item::before {
  content: counter(list-group-item) ". ";
  counter-increment: list-group-item;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* --- IMAGES (GÖRSELLER) --- */

/**
 * 1. Responsive Images (Duyarlı Görseller)
 * Makes images scale with the parent element.
 */
.my-shopify-img-fluid {
  max-width: 100%;
  height: auto;
}

/**
 * 2. Image Thumbnails (Küçük Resimler)
 * Adds a rounded 1px border.
 */
.my-shopify-img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

/**
 * 3. Floating Images (Yüzen Görseller)
 * Aligns images to the left or right.
 */
.my-shopify-float-start {
  float: left !important;
}

.my-shopify-float-end {
  float: right !important;
}

/* Responsive Floats */

/* --- ICON LINK --- */

.my-shopify-icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration: none;
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 0.5)
  );
  -webkit-text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 0.5)
  );
  text-underline-offset: 0.25em;
  transition: text-decoration-color 0.15s ease-in-out;
}

.my-shopify-icon-link:hover,
.my-shopify-icon-link:focus-visible {
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 1)
  );
  -webkit-text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 1)
  );
}

.my-shopify-icon-link > .my-shopify-bi {
  /* Assuming you are using Bootstrap Icons */
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: transform 0.2s ease-in-out;
}

.my-shopify-icon-link:hover > .my-shopify-bi,
.my-shopify-icon-link:focus-visible > .my-shopify-bi {
  transform: translate3d(0.25em, 0, 0);
}

/* --- VERTICAL ALIGNMENT (DİKEY HİZALAMA) --- */

.my-shopify-align-baseline {
  vertical-align: baseline !important;
}

.my-shopify-align-top {
  vertical-align: top !important;
}

.my-shopify-align-middle {
  vertical-align: middle !important;
}

.my-shopify-align-bottom {
  vertical-align: bottom !important;
}

.my-shopify-align-text-bottom {
  vertical-align: text-bottom !important;
}

.my-shopify-align-text-top {
  vertical-align: text-top !important;
}

/*
 * BOOTSTRAP 5 PADDING YARDIMCI SINIFLARI
 * Bu kod, Bootstrap'in 'p-', 'pt-', 'pb-', 'ps-', 'pe-', 'px-', 'py-'
 * ile başlayan tüm sınıflarının CSS karşılıklarını içerir.
 */

/* --- 1. Temel Padding Sınıfları (Tüm Ekran Boyutları İçin) --- */

.my-shopify-p-0 {
  padding: 0 !important;
}
.my-shopify-p-1 {
  padding: 0.25rem !important;
}
.my-shopify-p-2 {
  padding: 0.5rem !important;
}
.my-shopify-p-3 {
  padding: 1rem !important;
}
.my-shopify-p-4 {
  padding: 1.5rem !important;
}
.my-shopify-p-5 {
  padding: 3rem !important;
}

.my-shopify-px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.my-shopify-px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.my-shopify-px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.my-shopify-px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.my-shopify-px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.my-shopify-px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.my-shopify-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.my-shopify-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.my-shopify-py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.my-shopify-py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.my-shopify-py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.my-shopify-py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.my-shopify-pt-0 {
  padding-top: 0 !important;
}
.my-shopify-pt-1 {
  padding-top: 0.25rem !important;
}
.my-shopify-pt-2 {
  padding-top: 0.5rem !important;
}
.my-shopify-pt-3 {
  padding-top: 1rem !important;
}
.my-shopify-pt-4 {
  padding-top: 1.5rem !important;
}
.my-shopify-pt-5 {
  padding-top: 3rem !important;
}

.my-shopify-pb-0 {
  padding-bottom: 0 !important;
}
.my-shopify-pb-1 {
  padding-bottom: 0.25rem !important;
}
.my-shopify-pb-2 {
  padding-bottom: 0.5rem !important;
}
.my-shopify-pb-3 {
  padding-bottom: 1rem !important;
}
.my-shopify-pb-4 {
  padding-bottom: 1.5rem !important;
}
.my-shopify-pb-5 {
  padding-bottom: 3rem !important;
}

/* ps = padding-start (soldan iç boşluk) */
.my-shopify-ps-0 {
  padding-left: 0 !important;
}
.my-shopify-ps-1 {
  padding-left: 0.25rem !important;
}
.my-shopify-ps-2 {
  padding-left: 0.5rem !important;
}
.my-shopify-ps-3 {
  padding-left: 1rem !important;
}
.my-shopify-ps-4 {
  padding-left: 1.5rem !important;
}
.my-shopify-ps-5 {
  padding-left: 3rem !important;
}

/* pe = padding-end (sağdan iç boşluk) */
.my-shopify-pe-0 {
  padding-right: 0 !important;
}
.my-shopify-pe-1 {
  padding-right: 0.25rem !important;
}
.my-shopify-pe-2 {
  padding-right: 0.5rem !important;
}
.my-shopify-pe-3 {
  padding-right: 1rem !important;
}
.my-shopify-pe-4 {
  padding-right: 1.5rem !important;
}
.my-shopify-pe-5 {
  padding-right: 3rem !important;
}

.my-shopify-text-white {
  color: #fff !important;
}
.my-shopify-text-black {
  color: #000 !important;
}
.my-shopify-text-body {
  color: #212529 !important;
}
.my-shopify-text-muted {
  color: #6c757d !important;
}
.my-shopify-text-primary {
  color: #0d6efd !important;
}
.my-shopify-text-secondary {
  color: #6c757d !important;
}
.my-shopify-text-success {
  color: #198754 !important;
}
.my-shopify-text-danger {
  color: #dc3545 !important;
}
.my-shopify-text-warning {
  color: #ffc107 !important;
}
.my-shopify-text-info {
  color: #0dcaf0 !important;
}
.my-shopify-text-light {
  color: #f8f9fa !important;
}
.my-shopify-text-dark {
  color: #212529 !important;
}
.my-shopify-rounded-0 {
  border-radius: 0 !important;
}
.my-shopify-rounded-1 {
  border-radius: 0.2rem !important;
} /* ~3.2px */
.my-shopify-text-start {
  text-align: left !important;
}
.my-shopify-text-center {
  text-align: center !important;
}
.my-shopify-text-end {
  text-align: right !important;
}

/* === FONT WEIGHT === */
.my-shopify-fw-light {
  font-weight: 300 !important;
}
.my-shopify-fw-normal {
  font-weight: 400 !important;
}
.my-shopify-fw-bold {
  font-weight: 700 !important;
}
.my-shopify-rounded-2 {
  border-radius: 0.25rem !important;
} /* 4px */
.my-shopify-rounded-3 {
  border-radius: 0.375rem !important;
} /* 6px */
.my-shopify-rounded-4 {
  border-radius: 0.5rem !important;
} /* 8px */
.my-shopify-rounded-5 {
  border-radius: 1rem !important;
} /* 16px */
.my-shopify-rounded {
  border-radius: 0.25rem !important;
} /* default */
.my-shopify-rounded-circle {
  border-radius: 50% !important;
}
.my-shopify-rounded-pill {
  border-radius: 50rem !important;
}

.my-shopify-bg-primary {
  background-color: #0d6efd !important;
}
.my-shopify-bg-secondary {
  background-color: #6c757d !important;
}
.my-shopify-bg-success {
  background-color: #198754 !important;
}
.my-shopify-bg-danger {
  background-color: #dc3545 !important;
}
.my-shopify-bg-warning {
  background-color: #ffc107 !important;
}
.my-shopify-bg-info {
  background-color: #0dcaf0 !important;
}
.my-shopify-bg-light {
  background-color: #f8f9fa !important;
}
.my-shopify-bg-dark {
  background-color: #212529 !important;
}
.my-shopify-bg-black {
  background-color: #000 !important;
}
.my-shopify-bg-white {
  background-color: #fff !important;
}
.my-shopify-bg-body {
  background-color: #fff !important; /* Genellikle beyazdır */
}
.my-shopify-bg-transparent {
  background-color: transparent !important;
}

/* 2. Metin Renkleri (Text Colors) */
/* =========================================== */

.my-shopify-text-primary {
  color: #0d6efd !important;
}
.my-shopify-text-secondary {
  color: #6c757d !important;
}
.my-shopify-text-success {
  color: #198754 !important;
}
.my-shopify-text-danger {
  color: #dc3545 !important;
}
.my-shopify-text-warning {
  color: #ffc107 !important;
}
.my-shopify-text-info {
  color: #0dcaf0 !important;
}
.my-shopify-text-light {
  color: #f8f9fa !important;
}
.my-shopify-text-dark {
  color: #212529 !important;
}
.my-shopify-text-black {
  color: #000 !important;
}
.my-shopify-text-white {
  color: #fff !important;
}
.my-shopify-text-body {
  color: #212529 !important; /* Genellikle koyu renktir */
}
.my-shopify-text-muted {
  color: #6c757d !important; /* Genellikle secondary ile aynıdır */
}

/* 3. Kenarlık Renkleri (Border Colors) */
/* =========================================== */
/* Not: Bu sınıfların çalışması için elementin .border gibi bir kenarlık sınıfına sahip olması gerekir. */

.my-shopify-border-primary {
  border-color: #0d6efd !important;
}
.my-shopify-border-secondary {
  border-color: #6c757d !important;
}
.my-shopify-border-success {
  border-color: #198754 !important;
}
.my-shopify-border-danger {
  border-color: #dc3545 !important;
}
.my-shopify-border-warning {
  border-color: #ffc107 !important;
}
.my-shopify-border-info {
  border-color: #0dcaf0 !important;
}
.my-shopify-border-light {
  border-color: #f8f9fa !important;
}
.my-shopify-border-dark {
  border-color: #212529 !important;
}
.my-shopify-border-black {
  border-color: #000 !important;
}
.my-shopify-border-white {
  border-color: #fff !important;
}

/* 4. Opaklık ile Renkler (Colors with Opacity) */
/* Bootstrap bu işlevsellik için CSS değişkenleri kullanır. */
/* Daha basit bir RGBa tanımı: */

.my-shopify-text-black-50 {
  /* %50 opak siyah */
  color: rgba(0, 0, 0, 0.5) !important;
}
.my-shopify-text-white-50 {
  /* %50 opak beyaz */
  color: rgba(255, 255, 255, 0.5) !important;
}

/* 5. "Subtle" Arka Plan Renkleri (Daha Açık Tonlar) */
/* =========================================== */
.my-shopify-bg-primary-subtle {
  background-color: #cfe2ff !important;
}
.my-shopify-bg-secondary-subtle {
  background-color: #e2e3e5 !important;
}
.my-shopify-bg-success-subtle {
  background-color: #d1e7dd !important;
}
.my-shopify-bg-danger-subtle {
  background-color: #f8d7da !important;
}
.my-shopify-bg-warning-subtle {
  background-color: #fff3cd !important;
}
.my-shopify-bg-info-subtle {
  background-color: #cff4fc !important;
}
.my-shopify-bg-light-subtle {
  background-color: #fcfcfd !important;
}
.my-shopify-bg-dark-subtle {
  background-color: #ced4da !important;
}

/* 6. "Emphasis" Metin Renkleri (Daha Koyu Tonlar) */
/* Genellikle "subtle" arka planlar üzerinde kullanılırlar. */
/* =========================================== */

.my-shopify-text-primary-emphasis {
  color: #052c65 !important;
}
.my-shopify-text-secondary-emphasis {
  color: #2b2f32 !important;
}
.my-shopify-text-success-emphasis {
  color: #0a3622 !important;
}
.my-shopify-text-danger-emphasis {
  color: #58151c !important;
}
.my-shopify-text-warning-emphasis {
  color: #664d03 !important;
}
.my-shopify-text-info-emphasis {
  color: #055160 !important;
}
.my-shopify-text-light-emphasis {
  color: #495057 !important;
}
.my-shopify-text-dark-emphasis {
  color: #000 !important;
}

/* --- 2. Duyarlı (Responsive) Padding Sınıfları --- */

@media (min-width: 1200px) {
  .my-shopify-fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .my-shopify-fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .my-shopify-fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .my-shopify-fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .my-shopify-justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .my-shopify-justify-content-sm-center {
    justify-content: center !important;
  }
  .my-shopify-justify-content-sm-between {
    justify-content: space-between !important;
  }
  .my-shopify-justify-content-sm-around {
    justify-content: space-around !important;
  }
  .my-shopify-justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-justify-content-md-start {
    justify-content: flex-start !important;
  }
  .my-shopify-justify-content-md-end {
    justify-content: flex-end !important;
  }
  .my-shopify-justify-content-md-center {
    justify-content: center !important;
  }
  .my-shopify-justify-content-md-between {
    justify-content: space-between !important;
  }
  .my-shopify-justify-content-md-around {
    justify-content: space-around !important;
  }
  .my-shopify-justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .my-shopify-justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .my-shopify-justify-content-lg-center {
    justify-content: center !important;
  }
  .my-shopify-justify-content-lg-between {
    justify-content: space-between !important;
  }
  .my-shopify-justify-content-lg-around {
    justify-content: space-around !important;
  }
  .my-shopify-justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .my-shopify-justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .my-shopify-justify-content-xl-center {
    justify-content: center !important;
  }
  .my-shopify-justify-content-xl-between {
    justify-content: space-between !important;
  }
  .my-shopify-justify-content-xl-around {
    justify-content: space-around !important;
  }
  .my-shopify-justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .my-shopify-justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .my-shopify-justify-content-xxl-center {
    justify-content: center !important;
  }
  .my-shopify-justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .my-shopify-justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .my-shopify-justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
}

/* Small (sm) ekranlar ve üzeri - 576px+ */
@media (min-width: 576px) {
  .my-shopify-p-sm-0 {
    padding: 0 !important;
  }
  .my-shopify-p-sm-1 {
    padding: 0.25rem !important;
  }
  .my-shopify-p-sm-2 {
    padding: 0.5rem !important;
  }
  .my-shopify-p-sm-3 {
    padding: 1rem !important;
  }
  .my-shopify-p-sm-4 {
    padding: 1.5rem !important;
  }
  .my-shopify-p-sm-5 {
    padding: 3rem !important;
  }
  .my-shopify-px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .my-shopify-px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .my-shopify-px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .my-shopify-px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .my-shopify-px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .my-shopify-px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .my-shopify-py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .my-shopify-py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-shopify-py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-shopify-pt-sm-0 {
    padding-top: 0 !important;
  }
  .my-shopify-pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .my-shopify-pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .my-shopify-pt-sm-3 {
    padding-top: 1rem !important;
  }
  .my-shopify-pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .my-shopify-pt-sm-5 {
    padding-top: 3rem !important;
  }
  .my-shopify-pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .my-shopify-pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .my-shopify-pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .my-shopify-ps-sm-0 {
    padding-left: 0 !important;
  }
  .my-shopify-ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .my-shopify-ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .my-shopify-ps-sm-3 {
    padding-left: 1rem !important;
  }
  .my-shopify-ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .my-shopify-ps-sm-5 {
    padding-left: 3rem !important;
  }
  .my-shopify-pe-sm-0 {
    padding-right: 0 !important;
  }
  .my-shopify-pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .my-shopify-pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .my-shopify-pe-sm-3 {
    padding-right: 1rem !important;
  }
  .my-shopify-pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .my-shopify-pe-sm-5 {
    padding-right: 3rem !important;
  }
}

@media (min-width: 768px) {
  .my-shopify-p-md-0 {
    padding: 0 !important;
  }
  .my-shopify-p-md-1 {
    padding: 0.25rem !important;
  }
  .my-shopify-p-md-2 {
    padding: 0.5rem !important;
  }
  .my-shopify-p-md-3 {
    padding: 1rem !important;
  }
  .my-shopify-p-md-4 {
    padding: 1.5rem !important;
  }
  .my-shopify-p-md-5 {
    padding: 3rem !important;
  }
  .my-shopify-px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .my-shopify-px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .my-shopify-px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .my-shopify-px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .my-shopify-px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .my-shopify-px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .my-shopify-py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .my-shopify-py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-shopify-py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-shopify-pt-md-0 {
    padding-top: 0 !important;
  }
  .my-shopify-pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .my-shopify-pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .my-shopify-pt-md-3 {
    padding-top: 1rem !important;
  }
  .my-shopify-pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .my-shopify-pt-md-5 {
    padding-top: 3rem !important;
  }
  .my-shopify-pb-md-0 {
    padding-bottom: 0 !important;
  }
  .my-shopify-pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .my-shopify-pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .my-shopify-ps-md-0 {
    padding-left: 0 !important;
  }
  .my-shopify-ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .my-shopify-ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .my-shopify-ps-md-3 {
    padding-left: 1rem !important;
  }
  .my-shopify-ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .my-shopify-ps-md-5 {
    padding-left: 3rem !important;
  }
  .my-shopify-pe-md-0 {
    padding-right: 0 !important;
  }
  .my-shopify-pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .my-shopify-pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .my-shopify-pe-md-3 {
    padding-right: 1rem !important;
  }
  .my-shopify-pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .my-shopify-pe-md-5 {
    padding-right: 3rem !important;
  }
}

/* Large (lg) ekranlar ve üzeri - 992px+ */
@media (min-width: 992px) {
  .my-shopify-p-lg-0 {
    padding: 0 !important;
  }
  .my-shopify-p-lg-1 {
    padding: 0.25rem !important;
  }
  .my-shopify-p-lg-2 {
    padding: 0.5rem !important;
  }
  .my-shopify-p-lg-3 {
    padding: 1rem !important;
  }
  .my-shopify-p-lg-4 {
    padding: 1.5rem !important;
  }
  .my-shopify-p-lg-5 {
    padding: 3rem !important;
  }
  .my-shopify-px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .my-shopify-px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .my-shopify-px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .my-shopify-px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .my-shopify-px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .my-shopify-px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .my-shopify-py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .my-shopify-py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-shopify-py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-shopify-pt-lg-0 {
    padding-top: 0 !important;
  }
  .my-shopify-pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .my-shopify-pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .my-shopify-pt-lg-3 {
    padding-top: 1rem !important;
  }
  .my-shopify-pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .my-shopify-pt-lg-5 {
    padding-top: 3rem !important;
  }
  .my-shopify-pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .my-shopify-pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .my-shopify-pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .my-shopify-ps-lg-0 {
    padding-left: 0 !important;
  }
  .my-shopify-ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .my-shopify-ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .my-shopify-ps-lg-3 {
    padding-left: 1rem !important;
  }
  .my-shopify-ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .my-shopify-ps-lg-5 {
    padding-left: 3rem !important;
  }
  .my-shopify-pe-lg-0 {
    padding-right: 0 !important;
  }
  .my-shopify-pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .my-shopify-pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .my-shopify-pe-lg-3 {
    padding-right: 1rem !important;
  }
  .my-shopify-pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .my-shopify-pe-lg-5 {
    padding-right: 3rem !important;
  }
}

/* Extra Large (xl) ekranlar ve üzeri - 1200px+ */
@media (min-width: 1200px) {
  .my-shopify-p-xl-0 {
    padding: 0 !important;
  }
  .my-shopify-p-xl-1 {
    padding: 0.25rem !important;
  }
  .my-shopify-p-xl-2 {
    padding: 0.5rem !important;
  }
  .my-shopify-p-xl-3 {
    padding: 1rem !important;
  }
  .my-shopify-p-xl-4 {
    padding: 1.5rem !important;
  }
  .my-shopify-p-xl-5 {
    padding: 3rem !important;
  }
  .my-shopify-px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .my-shopify-px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .my-shopify-px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .my-shopify-px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .my-shopify-px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .my-shopify-px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .my-shopify-py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .my-shopify-py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-shopify-py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-shopify-pt-xl-0 {
    padding-top: 0 !important;
  }
  .my-shopify-pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .my-shopify-pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .my-shopify-pt-xl-3 {
    padding-top: 1rem !important;
  }
  .my-shopify-pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .my-shopify-pt-xl-5 {
    padding-top: 3rem !important;
  }
  .my-shopify-pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .my-shopify-pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .my-shopify-pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .my-shopify-ps-xl-0 {
    padding-left: 0 !important;
  }
  .my-shopify-ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .my-shopify-ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .my-shopify-ps-xl-3 {
    padding-left: 1rem !important;
  }
  .my-shopify-ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .my-shopify-ps-xl-5 {
    padding-left: 3rem !important;
  }
  .my-shopify-pe-xl-0 {
    padding-right: 0 !important;
  }
  .my-shopify-pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .my-shopify-pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .my-shopify-pe-xl-3 {
    padding-right: 1rem !important;
  }
  .my-shopify-pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .my-shopify-pe-xl-5 {
    padding-right: 3rem !important;
  }
}

/* Extra Extra Large (xxl) ekranlar ve üzeri - 1400px+ */
@media (min-width: 1400px) {
  .my-shopify-p-xxl-0 {
    padding: 0 !important;
  }
  .my-shopify-p-xxl-1 {
    padding: 0.25rem !important;
  }
  .my-shopify-p-xxl-2 {
    padding: 0.5rem !important;
  }
  .my-shopify-p-xxl-3 {
    padding: 1rem !important;
  }
  .my-shopify-p-xxl-4 {
    padding: 1.5rem !important;
  }
  .my-shopify-p-xxl-5 {
    padding: 3rem !important;
  }
  .my-shopify-px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .my-shopify-px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .my-shopify-px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .my-shopify-px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .my-shopify-px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .my-shopify-px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .my-shopify-py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .my-shopify-py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-shopify-py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-shopify-pt-xxl-0 {
    padding-top: 0 !important;
  }
  .my-shopify-pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .my-shopify-pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .my-shopify-pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .my-shopify-pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .my-shopify-pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .my-shopify-pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .my-shopify-pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .my-shopify-pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .my-shopify-pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .my-shopify-pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .my-shopify-pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .my-shopify-ps-xxl-0 {
    padding-left: 0 !important;
  }
  .my-shopify-ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .my-shopify-ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .my-shopify-ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .my-shopify-ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .my-shopify-ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .my-shopify-pe-xxl-0 {
    padding-right: 0 !important;
  }
  .my-shopify-pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .my-shopify-pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .my-shopify-pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .my-shopify-pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .my-shopify-pe-xxl-5 {
    padding-right: 3rem !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-g-sm-0 {
    --bs-gutter-x: var(--gap-0);
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-g-sm-1 {
    --bs-gutter-x: var(--gap-1);
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-g-sm-2 {
    --bs-gutter-x: var(--gap-2);
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-g-sm-3 {
    --bs-gutter-x: var(--gap-3);
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-g-sm-4 {
    --bs-gutter-x: var(--gap-4);
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-g-sm-5 {
    --bs-gutter-x: var(--gap-5);
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gx-sm-0 {
    --bs-gutter-x: var(--gap-0);
  }
  .my-shopify-gx-sm-1 {
    --bs-gutter-x: var(--gap-1);
  }
  .my-shopify-gx-sm-2 {
    --bs-gutter-x: var(--gap-2);
  }
  .my-shopify-gx-sm-3 {
    --bs-gutter-x: var(--gap-3);
  }
  .my-shopify-gx-sm-4 {
    --bs-gutter-x: var(--gap-4);
  }
  .my-shopify-gx-sm-5 {
    --bs-gutter-x: var(--gap-5);
  }
  .my-shopify-gy-sm-0 {
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-gy-sm-1 {
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-gy-sm-2 {
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-gy-sm-3 {
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-gy-sm-4 {
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-gy-sm-5 {
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gap-sm-0 {
    gap: var(--gap-0) !important;
  }
  .my-shopify-gap-sm-1 {
    gap: var(--gap-1) !important;
  }
  .my-shopify-gap-sm-2 {
    gap: var(--gap-2) !important;
  }
  .my-shopify-gap-sm-3 {
    gap: var(--gap-3) !important;
  }
  .my-shopify-gap-sm-4 {
    gap: var(--gap-4) !important;
  }
  .my-shopify-gap-sm-5 {
    gap: var(--gap-5) !important;
  }
}

/* MD */
@media (min-width: 768px) {
  .my-shopify-g-md-0 {
    --bs-gutter-x: var(--gap-0);
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-g-md-1 {
    --bs-gutter-x: var(--gap-1);
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-g-md-2 {
    --bs-gutter-x: var(--gap-2);
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-g-md-3 {
    --bs-gutter-x: var(--gap-3);
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-g-md-4 {
    --bs-gutter-x: var(--gap-4);
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-g-md-5 {
    --bs-gutter-x: var(--gap-5);
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gx-md-0 {
    --bs-gutter-x: var(--gap-0);
  }
  .my-shopify-gx-md-1 {
    --bs-gutter-x: var(--gap-1);
  }
  .my-shopify-gx-md-2 {
    --bs-gutter-x: var(--gap-2);
  }
  .my-shopify-gx-md-3 {
    --bs-gutter-x: var(--gap-3);
  }
  .my-shopify-gx-md-4 {
    --bs-gutter-x: var(--gap-4);
  }
  .my-shopify-gx-md-5 {
    --bs-gutter-x: var(--gap-5);
  }
  .my-shopify-gy-md-0 {
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-gy-md-1 {
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-gy-md-2 {
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-gy-md-3 {
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-gy-md-4 {
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-gy-md-5 {
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gap-md-0 {
    gap: var(--gap-0) !important;
  }
  .my-shopify-gap-md-1 {
    gap: var(--gap-1) !important;
  }
  .my-shopify-gap-md-2 {
    gap: var(--gap-2) !important;
  }
  .my-shopify-gap-md-3 {
    gap: var(--gap-3) !important;
  }
  .my-shopify-gap-md-4 {
    gap: var(--gap-4) !important;
  }
  .my-shopify-gap-md-5 {
    gap: var(--gap-5) !important;
  }
}

/* LG */
@media (min-width: 992px) {
  .my-shopify-g-lg-0 {
    --bs-gutter-x: var(--gap-0);
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-g-lg-1 {
    --bs-gutter-x: var(--gap-1);
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-g-lg-2 {
    --bs-gutter-x: var(--gap-2);
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-g-lg-3 {
    --bs-gutter-x: var(--gap-3);
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-g-lg-4 {
    --bs-gutter-x: var(--gap-4);
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-g-lg-5 {
    --bs-gutter-x: var(--gap-5);
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gx-lg-0 {
    --bs-gutter-x: var(--gap-0);
  }
  .my-shopify-gx-lg-1 {
    --bs-gutter-x: var(--gap-1);
  }
  .my-shopify-gx-lg-2 {
    --bs-gutter-x: var(--gap-2);
  }
  .my-shopify-gx-lg-3 {
    --bs-gutter-x: var(--gap-3);
  }
  .my-shopify-gx-lg-4 {
    --bs-gutter-x: var(--gap-4);
  }
  .my-shopify-gx-lg-5 {
    --bs-gutter-x: var(--gap-5);
  }
  .my-shopify-gy-lg-0 {
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-gy-lg-1 {
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-gy-lg-2 {
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-gy-lg-3 {
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-gy-lg-4 {
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-gy-lg-5 {
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gap-lg-0 {
    gap: var(--gap-0) !important;
  }
  .my-shopify-gap-lg-1 {
    gap: var(--gap-1) !important;
  }
  .my-shopify-gap-lg-2 {
    gap: var(--gap-2) !important;
  }
  .my-shopify-gap-lg-3 {
    gap: var(--gap-3) !important;
  }
  .my-shopify-gap-lg-4 {
    gap: var(--gap-4) !important;
  }
  .my-shopify-gap-lg-5 {
    gap: var(--gap-5) !important;
  }
}

/* XL */
@media (min-width: 1200px) {
  .my-shopify-g-xl-0 {
    --bs-gutter-x: var(--gap-0);
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-g-xl-1 {
    --bs-gutter-x: var(--gap-1);
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-g-xl-2 {
    --bs-gutter-x: var(--gap-2);
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-g-xl-3 {
    --bs-gutter-x: var(--gap-3);
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-g-xl-4 {
    --bs-gutter-x: var(--gap-4);
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-g-xl-5 {
    --bs-gutter-x: var(--gap-5);
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gx-xl-0 {
    --bs-gutter-x: var(--gap-0);
  }
  .my-shopify-gx-xl-1 {
    --bs-gutter-x: var(--gap-1);
  }
  .my-shopify-gx-xl-2 {
    --bs-gutter-x: var(--gap-2);
  }
  .my-shopify-gx-xl-3 {
    --bs-gutter-x: var(--gap-3);
  }
  .my-shopify-gx-xl-4 {
    --bs-gutter-x: var(--gap-4);
  }
  .my-shopify-gx-xl-5 {
    --bs-gutter-x: var(--gap-5);
  }
  .my-shopify-gy-xl-0 {
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-gy-xl-1 {
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-gy-xl-2 {
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-gy-xl-3 {
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-gy-xl-4 {
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-gy-xl-5 {
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gap-xl-0 {
    gap: var(--gap-0) !important;
  }
  .my-shopify-gap-xl-1 {
    gap: var(--gap-1) !important;
  }
  .my-shopify-gap-xl-2 {
    gap: var(--gap-2) !important;
  }
  .my-shopify-gap-xl-3 {
    gap: var(--gap-3) !important;
  }
  .my-shopify-gap-xl-4 {
    gap: var(--gap-4) !important;
  }
  .my-shopify-gap-xl-5 {
    gap: var(--gap-5) !important;
  }
}

/* XXL */
@media (min-width: 1400px) {
  .my-shopify-g-xxl-0 {
    --bs-gutter-x: var(--gap-0);
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-g-xxl-1 {
    --bs-gutter-x: var(--gap-1);
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-g-xxl-2 {
    --bs-gutter-x: var(--gap-2);
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-g-xxl-3 {
    --bs-gutter-x: var(--gap-3);
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-g-xxl-4 {
    --bs-gutter-x: var(--gap-4);
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-g-xxl-5 {
    --bs-gutter-x: var(--gap-5);
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gx-xxl-0 {
    --bs-gutter-x: var(--gap-0);
  }
  .my-shopify-gx-xxl-1 {
    --bs-gutter-x: var(--gap-1);
  }
  .my-shopify-gx-xxl-2 {
    --bs-gutter-x: var(--gap-2);
  }
  .my-shopify-gx-xxl-3 {
    --bs-gutter-x: var(--gap-3);
  }
  .my-shopify-gx-xxl-4 {
    --bs-gutter-x: var(--gap-4);
  }
  .my-shopify-gx-xxl-5 {
    --bs-gutter-x: var(--gap-5);
  }
  .my-shopify-gy-xxl-0 {
    --bs-gutter-y: var(--gap-0);
  }
  .my-shopify-gy-xxl-1 {
    --bs-gutter-y: var(--gap-1);
  }
  .my-shopify-gy-xxl-2 {
    --bs-gutter-y: var(--gap-2);
  }
  .my-shopify-gy-xxl-3 {
    --bs-gutter-y: var(--gap-3);
  }
  .my-shopify-gy-xxl-4 {
    --bs-gutter-y: var(--gap-4);
  }
  .my-shopify-gy-xxl-5 {
    --bs-gutter-y: var(--gap-5);
  }
  .my-shopify-gap-xxl-0 {
    gap: var(--gap-0) !important;
  }
  .my-shopify-gap-xxl-1 {
    gap: var(--gap-1) !important;
  }
  .my-shopify-gap-xxl-2 {
    gap: var(--gap-2) !important;
  }
  .my-shopify-gap-xxl-3 {
    gap: var(--gap-3) !important;
  }
  .my-shopify-gap-xxl-4 {
    gap: var(--gap-4) !important;
  }
  .my-shopify-gap-xxl-5 {
    gap: var(--gap-5) !important;
  }
}

/* Small (sm) ekranlar ve üzeri - 576px+ */
@media (min-width: 576px) {
  .my-shopify-container {
    max-width: 540px;
  }
  .my-shopify-col-sm {
    flex: 1 0 0%;
  }
  .my-shopify-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .my-shopify-container {
    max-width: 720px;
  }
  .my-shopify-col-md {
    flex: 1 0 0%;
  }
  .my-shopify-col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Large (lg) ekranlar ve üzeri - 992px+ */
@media (min-width: 992px) {
  .my-shopify-container {
    max-width: 960px;
  }
  .my-shopify-col-lg {
    flex: 1 0 0%;
  }
  .my-shopify-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Extra Large (xl) ekranlar ve üzeri - 1200px+ */
@media (min-width: 1200px) {
  .my-shopify-container {
    max-width: 1140px;
  }
  .my-shopify-col-xl {
    flex: 1 0 0%;
  }
  .my-shopify-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Extra Extra Large (xxl) ekranlar ve üzeri - 1400px+ */
@media (min-width: 1400px) {
  .my-shopify-container {
    max-width: 1320px;
  }
  .my-shopify-col-xxl {
    flex: 1 0 0%;
  }
  .my-shopify-col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Small (sm) ekranlar ve üzeri - 576px+ */
@media (min-width: 576px) {
  .my-shopify-m-sm-0 {
    margin: 0 !important;
  }
  .my-shopify-m-sm-1 {
    margin: 0.25rem !important;
  }
  .my-shopify-m-sm-2 {
    margin: 0.5rem !important;
  }
  .my-shopify-m-sm-3 {
    margin: 1rem !important;
  }
  .my-shopify-m-sm-4 {
    margin: 1.5rem !important;
  }
  .my-shopify-m-sm-5 {
    margin: 3rem !important;
  }
  .my-shopify-m-sm-auto {
    margin: auto !important;
  }
  .my-shopify-mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-shopify-mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-shopify-mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-shopify-mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-shopify-mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-shopify-mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-shopify-mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-shopify-my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-shopify-my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-shopify-my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-shopify-my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-shopify-mt-sm-0 {
    margin-top: 0 !important;
  }
  .my-shopify-mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .my-shopify-mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .my-shopify-mt-sm-3 {
    margin-top: 1rem !important;
  }
  .my-shopify-mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .my-shopify-mt-sm-5 {
    margin-top: 3rem !important;
  }
  .my-shopify-mt-sm-auto {
    margin-top: auto !important;
  }
  .my-shopify-mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .my-shopify-mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .my-shopify-mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .my-shopify-mb-sm-auto {
    margin-bottom: auto !important;
  }
  .my-shopify-ms-sm-0 {
    margin-left: 0 !important;
  }
  .my-shopify-ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .my-shopify-ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .my-shopify-ms-sm-3 {
    margin-left: 1rem !important;
  }
  .my-shopify-ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .my-shopify-ms-sm-5 {
    margin-left: 3rem !important;
  }
  .my-shopify-ms-sm-auto {
    margin-left: auto !important;
  }
  .my-shopify-me-sm-0 {
    margin-right: 0 !important;
  }
  .my-shopify-me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .my-shopify-me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .my-shopify-me-sm-3 {
    margin-right: 1rem !important;
  }
  .my-shopify-me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .my-shopify-me-sm-5 {
    margin-right: 3rem !important;
  }
  .my-shopify-me-sm-auto {
    margin-right: auto !important;
  }
}

/* Medium (md) ekranlar ve üzeri - 768px+ */
@media (min-width: 768px) {
  .my-shopify-m-md-0 {
    margin: 0 !important;
  }
  .my-shopify-m-md-1 {
    margin: 0.25rem !important;
  }
  .my-shopify-m-md-2 {
    margin: 0.5rem !important;
  }
  .my-shopify-m-md-3 {
    margin: 1rem !important;
  }
  .my-shopify-m-md-4 {
    margin: 1.5rem !important;
  }
  .my-shopify-m-md-5 {
    margin: 3rem !important;
  }
  .my-shopify-m-md-auto {
    margin: auto !important;
  }
  .my-shopify-mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-shopify-mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-shopify-mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-shopify-mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-shopify-mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-shopify-mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-shopify-mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-shopify-my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-shopify-my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-shopify-my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-shopify-my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-shopify-mt-md-0 {
    margin-top: 0 !important;
  }
  .my-shopify-mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .my-shopify-mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .my-shopify-mt-md-3 {
    margin-top: 1rem !important;
  }
  .my-shopify-mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .my-shopify-mt-md-5 {
    margin-top: 3rem !important;
  }
  .my-shopify-mt-md-auto {
    margin-top: auto !important;
  }
  .my-shopify-mb-md-0 {
    margin-bottom: 0 !important;
  }
  .my-shopify-mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .my-shopify-mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .my-shopify-mb-md-auto {
    margin-bottom: auto !important;
  }
  .my-shopify-ms-md-0 {
    margin-left: 0 !important;
  }
  .my-shopify-ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .my-shopify-ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .my-shopify-ms-md-3 {
    margin-left: 1rem !important;
  }
  .my-shopify-ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .my-shopify-ms-md-5 {
    margin-left: 3rem !important;
  }
  .my-shopify-ms-md-auto {
    margin-left: auto !important;
  }
  .my-shopify-me-md-0 {
    margin-right: 0 !important;
  }
  .my-shopify-me-md-1 {
    margin-right: 0.25rem !important;
  }
  .my-shopify-me-md-2 {
    margin-right: 0.5rem !important;
  }
  .my-shopify-me-md-3 {
    margin-right: 1rem !important;
  }
  .my-shopify-me-md-4 {
    margin-right: 1.5rem !important;
  }
  .my-shopify-me-md-5 {
    margin-right: 3rem !important;
  }
  .my-shopify-me-md-auto {
    margin-right: auto !important;
  }
}

@media (min-width: 992px) {
  .my-shopify-m-lg-0 {
    margin: 0 !important;
  }
  .my-shopify-m-lg-1 {
    margin: 0.25rem !important;
  }
  .my-shopify-m-lg-2 {
    margin: 0.5rem !important;
  }
  .my-shopify-m-lg-3 {
    margin: 1rem !important;
  }
  .my-shopify-m-lg-4 {
    margin: 1.5rem !important;
  }
  .my-shopify-m-lg-5 {
    margin: 3rem !important;
  }
  .my-shopify-m-lg-auto {
    margin: auto !important;
  }
  .my-shopify-mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-shopify-mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-shopify-mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-shopify-mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-shopify-mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-shopify-mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-shopify-mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-shopify-my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-shopify-my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-shopify-my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-shopify-my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-shopify-mt-lg-0 {
    margin-top: 0 !important;
  }
  .my-shopify-mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .my-shopify-mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .my-shopify-mt-lg-3 {
    margin-top: 1rem !important;
  }
  .my-shopify-mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .my-shopify-mt-lg-5 {
    margin-top: 3rem !important;
  }
  .my-shopify-mt-lg-auto {
    margin-top: auto !important;
  }
  .my-shopify-mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .my-shopify-mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .my-shopify-mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .my-shopify-mb-lg-auto {
    margin-bottom: auto !important;
  }
  .my-shopify-ms-lg-0 {
    margin-left: 0 !important;
  }
  .my-shopify-ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .my-shopify-ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .my-shopify-ms-lg-3 {
    margin-left: 1rem !important;
  }
  .my-shopify-ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .my-shopify-ms-lg-5 {
    margin-left: 3rem !important;
  }
  .my-shopify-ms-lg-auto {
    margin-left: auto !important;
  }
  .my-shopify-me-lg-0 {
    margin-right: 0 !important;
  }
  .my-shopify-me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .my-shopify-me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .my-shopify-me-lg-3 {
    margin-right: 1rem !important;
  }
  .my-shopify-me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .my-shopify-me-lg-5 {
    margin-right: 3rem !important;
  }
  .my-shopify-me-lg-auto {
    margin-right: auto !important;
  }
}

/* Extra Large (xl) ekranlar ve üzeri - 1200px+ */
@media (min-width: 1200px) {
  .my-shopify-m-xl-0 {
    margin: 0 !important;
  }
  .my-shopify-m-xl-1 {
    margin: 0.25rem !important;
  }
  .my-shopify-m-xl-2 {
    margin: 0.5rem !important;
  }
  .my-shopify-m-xl-3 {
    margin: 1rem !important;
  }
  .my-shopify-m-xl-4 {
    margin: 1.5rem !important;
  }
  .my-shopify-m-xl-5 {
    margin: 3rem !important;
  }
  .my-shopify-m-xl-auto {
    margin: auto !important;
  }
  .my-shopify-mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-shopify-mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-shopify-mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-shopify-mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-shopify-mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-shopify-mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-shopify-mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-shopify-my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-shopify-my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-shopify-my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-shopify-my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-shopify-mt-xl-0 {
    margin-top: 0 !important;
  }
  .my-shopify-mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .my-shopify-mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .my-shopify-mt-xl-3 {
    margin-top: 1rem !important;
  }
  .my-shopify-mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .my-shopify-mt-xl-5 {
    margin-top: 3rem !important;
  }
  .my-shopify-mt-xl-auto {
    margin-top: auto !important;
  }
  .my-shopify-mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .my-shopify-mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .my-shopify-mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .my-shopify-mb-xl-auto {
    margin-bottom: auto !important;
  }
  .my-shopify-ms-xl-0 {
    margin-left: 0 !important;
  }
  .my-shopify-ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .my-shopify-ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .my-shopify-ms-xl-3 {
    margin-left: 1rem !important;
  }
  .my-shopify-ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .my-shopify-ms-xl-5 {
    margin-left: 3rem !important;
  }
  .my-shopify-ms-xl-auto {
    margin-left: auto !important;
  }
  .my-shopify-me-xl-0 {
    margin-right: 0 !important;
  }
  .my-shopify-me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .my-shopify-me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .my-shopify-me-xl-3 {
    margin-right: 1rem !important;
  }
  .my-shopify-me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .my-shopify-me-xl-5 {
    margin-right: 3rem !important;
  }
  .my-shopify-me-xl-auto {
    margin-right: auto !important;
  }
}

/* Extra Extra Large (xxl) ekranlar ve üzeri - 1400px+ */
@media (min-width: 1400px) {
  .my-shopify-m-xxl-0 {
    margin: 0 !important;
  }
  .my-shopify-m-xxl-1 {
    margin: 0.25rem !important;
  }
  .my-shopify-m-xxl-2 {
    margin: 0.5rem !important;
  }
  .my-shopify-m-xxl-3 {
    margin: 1rem !important;
  }
  .my-shopify-m-xxl-4 {
    margin: 1.5rem !important;
  }
  .my-shopify-m-xxl-5 {
    margin: 3rem !important;
  }
  .my-shopify-m-xxl-auto {
    margin: auto !important;
  }
  .my-shopify-mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-shopify-mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .my-shopify-mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .my-shopify-mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .my-shopify-mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .my-shopify-mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .my-shopify-mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-shopify-my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-shopify-my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-shopify-my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-shopify-my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-shopify-mt-xxl-0 {
    margin-top: 0 !important;
  }
  .my-shopify-mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .my-shopify-mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .my-shopify-mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .my-shopify-mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .my-shopify-mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .my-shopify-mt-xxl-auto {
    margin-top: auto !important;
  }
  .my-shopify-mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .my-shopify-mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .my-shopify-mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .my-shopify-mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .my-shopify-mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .my-shopify-mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .my-shopify-mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .my-shopify-ms-xxl-0 {
    margin-left: 0 !important;
  }
  .my-shopify-ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .my-shopify-ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .my-shopify-ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .my-shopify-ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .my-shopify-ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .my-shopify-ms-xxl-auto {
    margin-left: auto !important;
  }
  .my-shopify-me-xxl-0 {
    margin-right: 0 !important;
  }
  .my-shopify-me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .my-shopify-me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .my-shopify-me-xxl-3 {
    margin-right: 1rem !important;
  }
  .my-shopify-me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .my-shopify-me-xxl-5 {
    margin-right: 3rem !important;
  }
  .my-shopify-me-xxl-auto {
    margin-right: auto !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-container {
    max-width: 540px;
  }
  .my-shopify-col-sm {
    flex: 1 0 0%;
  }
  .my-shopify-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Medium (md) ekranlar ve üzeri - 768px+ */
@media (min-width: 768px) {
  .my-shopify-container {
    max-width: 720px;
  }
  .my-shopify-col-md {
    flex: 1 0 0%;
  }
  .my-shopify-col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Large (lg) ekranlar ve üzeri - 992px+ */
@media (min-width: 992px) {
  .my-shopify-container {
    max-width: 960px;
  }
  .my-shopify-col-lg {
    flex: 1 0 0%;
  }
  .my-shopify-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Extra Large (xl) ekranlar ve üzeri - 1200px+ */
@media (min-width: 1200px) {
  .my-shopify-container {
    max-width: 1140px;
  }
  .my-shopify-col-xl {
    flex: 1 0 0%;
  }
  .my-shopify-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Extra Extra Large (xxl) ekranlar ve üzeri - 1400px+ */
@media (min-width: 1400px) {
  .my-shopify-container {
    max-width: 1320px;
  }
  .my-shopify-col-xxl {
    flex: 1 0 0%;
  }
  .my-shopify-col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .my-shopify-col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .my-shopify-col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .my-shopify-col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .my-shopify-col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .my-shopify-col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .my-shopify-col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .my-shopify-col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .my-shopify-col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .my-shopify-col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .my-shopify-col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .my-shopify-col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .my-shopify-col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 576px) {
  .my-shopify-d-sm-none {
    display: none !important;
  }
  .my-shopify-d-sm-inline {
    display: inline !important;
  }
  .my-shopify-d-sm-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-sm-block {
    display: block !important;
  }
  .my-shopify-d-sm-grid {
    display: grid !important;
  }
  .my-shopify-d-sm-table {
    display: table !important;
  }
  .my-shopify-d-sm-table-row {
    display: table-row !important;
  }
  .my-shopify-d-sm-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-sm-flex {
    display: flex !important;
  }
  .my-shopify-d-sm-inline-flex {
    display: inline-flex !important;
  }
}

/* Medium (md) ekranlar ve üzeri - 768px+ */
@media (min-width: 768px) {
  .my-shopify-d-md-none {
    display: none !important;
  }
  .my-shopify-d-md-inline {
    display: inline !important;
  }
  .my-shopify-d-md-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-md-block {
    display: block !important;
  }
  .my-shopify-d-md-grid {
    display: grid !important;
  }
  .my-shopify-d-md-table {
    display: table !important;
  }
  .my-shopify-d-md-table-row {
    display: table-row !important;
  }
  .my-shopify-d-md-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-md-flex {
    display: flex !important;
  }
  .my-shopify-d-md-inline-flex {
    display: inline-flex !important;
  }
}

/* Large (lg) ekranlar ve üzeri - 992px+ */
@media (min-width: 992px) {
  .my-shopify-d-lg-none {
    display: none !important;
  }
  .my-shopify-d-lg-inline {
    display: inline !important;
  }
  .my-shopify-d-lg-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-lg-block {
    display: block !important;
  }
  .my-shopify-d-lg-grid {
    display: grid !important;
  }
  .my-shopify-d-lg-table {
    display: table !important;
  }
  .my-shopify-d-lg-table-row {
    display: table-row !important;
  }
  .my-shopify-d-lg-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-lg-flex {
    display: flex !important;
  }
  .my-shopify-d-lg-inline-flex {
    display: inline-flex !important;
  }
}

/* Extra Large (xl) ekranlar ve üzeri - 1200px+ */
@media (min-width: 1200px) {
  .my-shopify-d-xl-none {
    display: none !important;
  }
  .my-shopify-d-xl-inline {
    display: inline !important;
  }
  .my-shopify-d-xl-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-xl-block {
    display: block !important;
  }
  .my-shopify-d-xl-grid {
    display: grid !important;
  }
  .my-shopify-d-xl-table {
    display: table !important;
  }
  .my-shopify-d-xl-table-row {
    display: table-row !important;
  }
  .my-shopify-d-xl-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-xl-flex {
    display: flex !important;
  }
  .my-shopify-d-xl-inline-flex {
    display: inline-flex !important;
  }
}

/* Extra Extra Large (xxl) ekranlar ve üzeri - 1400px+ */
@media (min-width: 1400px) {
  .my-shopify-d-xxl-none {
    display: none !important;
  }
  .my-shopify-d-xxl-inline {
    display: inline !important;
  }
  .my-shopify-d-xxl-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-xxl-block {
    display: block !important;
  }
  .my-shopify-d-xxl-grid {
    display: grid !important;
  }
  .my-shopify-d-xxl-table {
    display: table !important;
  }
  .my-shopify-d-xxl-table-row {
    display: table-row !important;
  }
  .my-shopify-d-xxl-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-xxl-flex {
    display: flex !important;
  }
  .my-shopify-d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .my-shopify-d-print-none {
    display: none !important;
  }
  .my-shopify-d-print-inline {
    display: inline !important;
  }
  .my-shopify-d-print-inline-block {
    display: inline-block !important;
  }
  .my-shopify-d-print-block {
    display: block !important;
  }
  .my-shopify-d-print-grid {
    display: grid !important;
  }
  .my-shopify-d-print-table {
    display: table !important;
  }
  .my-shopify-d-print-table-row {
    display: table-row !important;
  }
  .my-shopify-d-print-table-cell {
    display: table-cell !important;
  }
  .my-shopify-d-print-flex {
    display: flex !important;
  }
  .my-shopify-d-print-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-d-sm-flex {
    display: flex !important;
  }
  .my-shopify-d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-d-md-flex {
    display: flex !important;
  }
  .my-shopify-d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-d-lg-flex {
    display: flex !important;
  }
  .my-shopify-d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-d-xl-flex {
    display: flex !important;
  }
  .my-shopify-d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-d-xxl-flex {
    display: flex !important;
  }
  .my-shopify-d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-flex-sm-row {
    flex-direction: row !important;
  }
  .my-shopify-flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .my-shopify-flex-sm-column {
    flex-direction: column !important;
  }
  .my-shopify-flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-flex-md-row {
    flex-direction: row !important;
  }
  .my-shopify-flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .my-shopify-flex-md-column {
    flex-direction: column !important;
  }
  .my-shopify-flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-flex-lg-row {
    flex-direction: row !important;
  }
  .my-shopify-flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .my-shopify-flex-lg-column {
    flex-direction: column !important;
  }
  .my-shopify-flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-flex-xl-row {
    flex-direction: row !important;
  }
  .my-shopify-flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .my-shopify-flex-xl-column {
    flex-direction: column !important;
  }
  .my-shopify-flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-flex-xxl-row {
    flex-direction: row !important;
  }
  .my-shopify-flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .my-shopify-flex-xxl-column {
    flex-direction: column !important;
  }
  .my-shopify-flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-align-self-sm-start {
    align-self: flex-start !important;
  }
  .my-shopify-align-self-sm-end {
    align-self: flex-end !important;
  }
  .my-shopify-align-self-sm-center {
    align-self: center !important;
  }
  .my-shopify-align-self-sm-baseline {
    align-self: baseline !important;
  }
  .my-shopify-align-self-sm-stretch {
    align-self: stretch !important;
  }
  .my-shopify-align-self-sm-auto {
    align-self: auto !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-align-self-md-start {
    align-self: flex-start !important;
  }
  .my-shopify-align-self-md-end {
    align-self: flex-end !important;
  }
  .my-shopify-align-self-md-center {
    align-self: center !important;
  }
  .my-shopify-align-self-md-baseline {
    align-self: baseline !important;
  }
  .my-shopify-align-self-md-stretch {
    align-self: stretch !important;
  }
  .my-shopify-align-self-md-auto {
    align-self: auto !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-align-self-lg-start {
    align-self: flex-start !important;
  }
  .my-shopify-align-self-lg-end {
    align-self: flex-end !important;
  }
  .my-shopify-align-self-lg-center {
    align-self: center !important;
  }
  .my-shopify-align-self-lg-baseline {
    align-self: baseline !important;
  }
  .my-shopify-align-self-lg-stretch {
    align-self: stretch !important;
  }
  .my-shopify-align-self-lg-auto {
    align-self: auto !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-align-self-xl-start {
    align-self: flex-start !important;
  }
  .my-shopify-align-self-xl-end {
    align-self: flex-end !important;
  }
  .my-shopify-align-self-xl-center {
    align-self: center !important;
  }
  .my-shopify-align-self-xl-baseline {
    align-self: baseline !important;
  }
  .my-shopify-align-self-xl-stretch {
    align-self: stretch !important;
  }
  .my-shopify-align-self-xl-auto {
    align-self: auto !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-align-self-xxl-start {
    align-self: flex-start !important;
  }
  .my-shopify-align-self-xxl-end {
    align-self: flex-end !important;
  }
  .my-shopify-align-self-xxl-center {
    align-self: center !important;
  }
  .my-shopify-align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .my-shopify-align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .my-shopify-align-self-xxl-auto {
    align-self: auto !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-align-items-sm-start {
    align-items: flex-start !important;
  }
  .my-shopify-align-items-sm-end {
    align-items: flex-end !important;
  }
  .my-shopify-align-items-sm-center {
    align-items: center !important;
  }
  .my-shopify-align-items-sm-baseline {
    align-items: baseline !important;
  }
  .my-shopify-align-items-sm-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-align-items-md-start {
    align-items: flex-start !important;
  }
  .my-shopify-align-items-md-end {
    align-items: flex-end !important;
  }
  .my-shopify-align-items-md-center {
    align-items: center !important;
  }
  .my-shopify-align-items-md-baseline {
    align-items: baseline !important;
  }
  .my-shopify-align-items-md-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-align-items-lg-start {
    align-items: flex-start !important;
  }
  .my-shopify-align-items-lg-end {
    align-items: flex-end !important;
  }
  .my-shopify-align-items-lg-center {
    align-items: center !important;
  }
  .my-shopify-align-items-lg-baseline {
    align-items: baseline !important;
  }
  .my-shopify-align-items-lg-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-align-items-xl-start {
    align-items: flex-start !important;
  }
  .my-shopify-align-items-xl-end {
    align-items: flex-end !important;
  }
  .my-shopify-align-items-xl-center {
    align-items: center !important;
  }
  .my-shopify-align-items-xl-baseline {
    align-items: baseline !important;
  }
  .my-shopify-align-items-xl-stretch {
    align-items: stretch !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-align-items-xxl-start {
    align-items: flex-start !important;
  }
  .my-shopify-align-items-xxl-end {
    align-items: flex-end !important;
  }
  .my-shopify-align-items-xxl-center {
    align-items: center !important;
  }
  .my-shopify-align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .my-shopify-align-items-xxl-stretch {
    align-items: stretch !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .my-shopify-flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .my-shopify-flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .my-shopify-flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .my-shopify-flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-flex-md-fill {
    flex: 1 1 auto !important;
  }
  .my-shopify-flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .my-shopify-flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .my-shopify-flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .my-shopify-flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .my-shopify-flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .my-shopify-flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .my-shopify-flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .my-shopify-flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .my-shopify-flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .my-shopify-flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .my-shopify-flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .my-shopify-flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .my-shopify-flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .my-shopify-flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .my-shopify-flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .my-shopify-flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .my-shopify-flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .my-shopify-flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .my-shopify-flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .my-shopify-flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .my-shopify-flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .my-shopify-flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .my-shopify-flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .my-shopify-flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .my-shopify-flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .my-shopify-flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-order-sm-first {
    order: -1 !important;
  }
  .my-shopify-order-sm-0 {
    order: 0 !important;
  }
  .my-shopify-order-sm-1 {
    order: 1 !important;
  }
  .my-shopify-order-sm-2 {
    order: 2 !important;
  }
  .my-shopify-order-sm-3 {
    order: 3 !important;
  }
  .my-shopify-order-sm-4 {
    order: 4 !important;
  }
  .my-shopify-order-sm-5 {
    order: 5 !important;
  }
  .my-shopify-order-sm-last {
    order: 6 !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-order-md-first {
    order: -1 !important;
  }
  .my-shopify-order-md-0 {
    order: 0 !important;
  }
  .my-shopify-order-md-1 {
    order: 1 !important;
  }
  .my-shopify-order-md-2 {
    order: 2 !important;
  }
  .my-shopify-order-md-3 {
    order: 3 !important;
  }
  .my-shopify-order-md-4 {
    order: 4 !important;
  }
  .my-shopify-order-md-5 {
    order: 5 !important;
  }
  .my-shopify-order-md-last {
    order: 6 !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-order-lg-first {
    order: -1 !important;
  }
  .my-shopify-order-lg-0 {
    order: 0 !important;
  }
  .my-shopify-order-lg-1 {
    order: 1 !important;
  }
  .my-shopify-order-lg-2 {
    order: 2 !important;
  }
  .my-shopify-order-lg-3 {
    order: 3 !important;
  }
  .my-shopify-order-lg-4 {
    order: 4 !important;
  }
  .my-shopify-order-lg-5 {
    order: 5 !important;
  }
  .my-shopify-order-lg-last {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-order-xl-first {
    order: -1 !important;
  }
  .my-shopify-order-xl-0 {
    order: 0 !important;
  }
  .my-shopify-order-xl-1 {
    order: 1 !important;
  }
  .my-shopify-order-xl-2 {
    order: 2 !important;
  }
  .my-shopify-order-xl-3 {
    order: 3 !important;
  }
  .my-shopify-order-xl-4 {
    order: 4 !important;
  }
  .my-shopify-order-xl-5 {
    order: 5 !important;
  }
  .my-shopify-order-xl-last {
    order: 6 !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-order-xxl-first {
    order: -1 !important;
  }
  .my-shopify-order-xxl-0 {
    order: 0 !important;
  }
  .my-shopify-order-xxl-1 {
    order: 1 !important;
  }
  .my-shopify-order-xxl-2 {
    order: 2 !important;
  }
  .my-shopify-order-xxl-3 {
    order: 3 !important;
  }
  .my-shopify-order-xxl-4 {
    order: 4 !important;
  }
  .my-shopify-order-xxl-5 {
    order: 5 !important;
  }
  .my-shopify-order-xxl-last {
    order: 6 !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-align-content-sm-start {
    align-content: flex-start !important;
  }
  .my-shopify-align-content-sm-end {
    align-content: flex-end !important;
  }
  .my-shopify-align-content-sm-center {
    align-content: center !important;
  }
  .my-shopify-align-content-sm-between {
    align-content: space-between !important;
  }
  .my-shopify-align-content-sm-around {
    align-content: space-around !important;
  }
  .my-shopify-align-content-sm-stretch {
    align-content: stretch !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-align-content-md-start {
    align-content: flex-start !important;
  }
  .my-shopify-align-content-md-end {
    align-content: flex-end !important;
  }
  .my-shopify-align-content-md-center {
    align-content: center !important;
  }
  .my-shopify-align-content-md-between {
    align-content: space-between !important;
  }
  .my-shopify-align-content-md-around {
    align-content: space-around !important;
  }
  .my-shopify-align-content-md-stretch {
    align-content: stretch !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-align-content-lg-start {
    align-content: flex-start !important;
  }
  .my-shopify-align-content-lg-end {
    align-content: flex-end !important;
  }
  .my-shopify-align-content-lg-center {
    align-content: center !important;
  }
  .my-shopify-align-content-lg-between {
    align-content: space-between !important;
  }
  .my-shopify-align-content-lg-around {
    align-content: space-around !important;
  }
  .my-shopify-align-content-lg-stretch {
    align-content: stretch !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-align-content-xl-start {
    align-content: flex-start !important;
  }
  .my-shopify-align-content-xl-end {
    align-content: flex-end !important;
  }
  .my-shopify-align-content-xl-center {
    align-content: center !important;
  }
  .my-shopify-align-content-xl-between {
    align-content: space-between !important;
  }
  .my-shopify-align-content-xl-around {
    align-content: space-around !important;
  }
  .my-shopify-align-content-xl-stretch {
    align-content: stretch !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-align-content-xxl-start {
    align-content: flex-start !important;
  }
  .my-shopify-align-content-xxl-end {
    align-content: flex-end !important;
  }
  .my-shopify-align-content-xxl-center {
    align-content: center !important;
  }
  .my-shopify-align-content-xxl-between {
    align-content: space-between !important;
  }
  .my-shopify-align-content-xxl-around {
    align-content: space-around !important;
  }
  .my-shopify-align-content-xxl-stretch {
    align-content: stretch !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .my-shopify-sticky-sm-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .my-shopify-sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .my-shopify-sticky-md-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .my-shopify-sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .my-shopify-sticky-lg-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .my-shopify-sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .my-shopify-sticky-xl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .my-shopify-sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .my-shopify-sticky-xxl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 576px) {
  .my-shopify-text-sm-start {
    text-align: left !important;
  }
  .my-shopify-text-sm-end {
    text-align: right !important;
  }
  .my-shopify-text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-text-md-start {
    text-align: left !important;
  }
  .my-shopify-text-md-end {
    text-align: right !important;
  }
  .my-shopify-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-text-lg-start {
    text-align: left !important;
  }
  .my-shopify-text-lg-end {
    text-align: right !important;
  }
  .my-shopify-text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-text-xl-start {
    text-align: left !important;
  }
  .my-shopify-text-xl-end {
    text-align: right !important;
  }
  .my-shopify-text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-text-xxl-start {
    text-align: left !important;
  }
  .my-shopify-text-xxl-end {
    text-align: right !important;
  }
  .my-shopify-text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .my-shopify-float-sm-start {
    float: left !important;
  }
  .my-shopify-float-sm-end {
    float: right !important;
  }
}
@media (min-width: 768px) {
  .my-shopify-float-md-start {
    float: left !important;
  }
  .my-shopify-float-md-end {
    float: right !important;
  }
}
@media (min-width: 992px) {
  .my-shopify-float-lg-start {
    float: left !important;
  }
  .my-shopify-float-lg-end {
    float: right !important;
  }
}
@media (min-width: 1200px) {
  .my-shopify-float-xl-start {
    float: left !important;
  }
  .my-shopify-float-xl-end {
    float: right !important;
  }
}
@media (min-width: 1400px) {
  .my-shopify-float-xxl-start {
    float: left !important;
  }
  .my-shopify-float-xxl-end {
    float: right !important;
  }
}
