/**
 * SK Theme CSS
 *
 * Vendor dashboard, store pages, product upload, subscriptions,
 * vendor info boxes, seller listing, geolocation map, etc.
 *
 * These rules target .sk-* / #sk-* selectors and are enqueued by sk-lite.
 * Extracted from kadence-child/style.css.
 */

@media (max-width: 684px) {
.sk-dashboard .sk-settings-area .sk-control-label {
  color: #fff !important;
  margin-left: 10px;
  }
}

/*---- Profil Pic Avatar ----*/

/* Dokan: Kontakt-Hinweis – volle Breite im Content, ohne Layout-Bruch */
.sk-dashboard .sk-dashboard-content .kontakt-hinweis {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 20px !important;        /* nur unten Abstand, kein zentrierendes auto */
  padding: 16px 20px !important;       /* Innenabstand */
  background-color: #fff3cd;           /* bootstrap-like warning */
  border: 1px solid #ffeeba;
  color: #856404;
  border-radius: 8px;                   /* gleicher Radius wie dein Content */
  text-align: center;
}

/* Link-Stil im Banner */
.sk-dashboard .sk-dashboard-content .kontakt-hinweis a {
  color: #d9534f;
  text-decoration: underline;
}

/* Dokan: Vendor-Info-Box hübsch machen */
.single-product .sk-vendor-info-wrap {
  border: 1px solid #2e3846 !important;   /* statt weiß */
  background: #181e27 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.28) !important;
  margin-top: 10px !important;
  margin-bottom: 10px;
}

/* Hover-Feedback (dezent) */
.single-product .sk-vendor-info-wrap:hover {
  border-color: rgba(247,147,26,.55) !important;
  box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 0 0 3px rgba(247,147,26,.10) !important;
}

/* Avatar: rund mit BTC-Orange Ring */
.single-product .sk-vendor-info-wrap .sk-vendor-image img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  border: 3px solid #F7931A !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.35) !important;
}

/* Textblock: Name/Rating sauber setzen */
.single-product .sk-vendor-info-wrap .sk-vendor-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.single-product .sk-vendor-info-wrap .sk-store-name,
.single-product .sk-vendor-info-wrap .sk-store-name a {
  color: #cfd6df !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.single-product .sk-vendor-info-wrap .sk-store-name a:hover {
  color: #ffffff !important;
}

/* Sterne/Meta dezenter, Sterne in Orange */
.single-product .sk-vendor-info-wrap .seller-rating,
.single-product .sk-vendor-info-wrap .seller-rating * {
  color: #F7931A !important;
}
.single-product .sk-vendor-info-wrap .sk-store-info {
  color: #9aa4b2 !important;
  font-size: 14px !important;
}
@media (max-width: 560px) {
  .single-product .sk-vendor-info-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px 14px !important;
  }
}

/* Falls Theme irgendwo den alten weißen Rahmen neu setzt – hart neutralisieren */
.single-product .sk-vendor-info-wrap {
  box-sizing: border-box !important;
}

/* Vendor-Karte: als Link kenntlich machen */
.single-product .sk-vendor-info-wrap {
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important; /* iOS */
}

/* optional: kleines Hover-/Focus-Feedback */
.single-product .sk-vendor-info-wrap:hover,
.single-product .sk-vendor-info-wrap:focus-within {
  box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 0 0 3px rgba(247,147,26,.10) !important;
  border-color: rgba(247,147,26,.55) !important;
}

/* ----------------------------------------------------------
   WooCommerce Widget: Neueste Produkte – Dark Card Look
   Passt zum Site-Theme (#252d38 / #F7931A)
   ---------------------------------------------------------- */

/* Die Widget-Karte selbst */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products {
  background: #252d38;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  overflow: hidden;
}

/* Titel */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products .widgettitle {
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
  position: relative;
}
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products .widgettitle::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: #F7931A;   /* Bitcoin-Orange Akzent */
  opacity: .9;
}

/* Liste zurücksetzen */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Einzelnes Item */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s ease, transform .15s ease;
}

/* Hover-Highlight für die Zeile */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li:hover {
  background: rgba(255,255,255,.03);
  border-radius: 8px;
}

/* Letztes Item ohne Trennlinie */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li:last-child {
  border-bottom: 0;
}

/* Thumbnail */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li img {
  width: 65px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
}

/* Produkt-Titel */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li a {
  color: #d7dee7;             /* helles Grau auf Dark */
  font-weight: 600;
  line-height: 1.25;
  display: inline-block;
  transition: color .2s ease;
  text-decoration: none;
}

/* Hover in Bitcoin-Orange */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products ul.product_list_widget li a:hover {
  color: #F7931A;
}

/* Preiszeile */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
  ul.product_list_widget li .woocommerce-Price-amount {
  color: #F7931A;
  font-weight: 700;
}

/* Durchgestrichener alter Preis (bei Angeboten) */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
  ul.product_list_widget li del {
  color: #9aa4b2;
  opacity: .85;
  margin-right: 6px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #F7931A;
}

/* Kleinere Meta-Zeilen (falls vorhanden) */
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
  ul.product_list_widget li .reviewer,
.sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
  ul.product_list_widget li .amount small {
  color: #9aa4b2;
  font-size: .85em;
}
@media (max-width: 767px) {
  .sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products {
    padding: 14px 14px;
    border-radius: 10px;
  }
  .sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
    ul.product_list_widget li img {
    width: 48px;
    height: 48px;
    border-radius: 7px;
  }
  .sk-store-wrap .sk-store-sidebar .widget.woocommerce.widget_products
    .widgettitle::after {
    width: 48px;
  }
}

/* ----------------------------------------------------------
 * Neueste Produkte Widget – Umrechnung ausblenden
 * ---------------------------------------------------------- */
.sk-store-wrap .sk-store-sidebar 
.widget.woocommerce.widget_products 
ul.product_list_widget li div[style*="font-size: 0.8em"] {
  display: none !important;
}

.sk-store-wrap .sk-store-sidebar .woocommerce del .woocommerce-Price-amount {
	display: none
}

/* ===========================
             DOKAM
   =========================== */

/*-----Dokan Vendor Navigation -----*/

/* Container */
#sk-seller-listing-wrap .pagination-container {
  margin-top: 40px;
  text-align: center;
}

/* Grundlayout */
#sk-seller-listing-wrap .pagination li {
  display: inline-block;
  margin: 0 4px;
}

/* Standardzustand (nicht aktiv) */
#sk-seller-listing-wrap .pagination li a,
#sk-seller-listing-wrap .pagination li span {
  display: inline-block;
  min-width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  padding: 0;
  background-color: transparent;
  border: none;                 /* kein Rahmen */
  color: #ffffff;               /* weiße Schrift */
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Hover auf nicht aktiven Seiten */
#sk-seller-listing-wrap .pagination li a:hover {
  background-color: #f7931a;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(247, 147, 26, 0.4);
}

/* Aktive Seite */
#sk-seller-listing-wrap .pagination li span.current {
  background-color: #f7931a;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 10px rgba(247, 147, 26, 0.4);
}

/* Next / Prev Buttons */
#sk-seller-listing-wrap .pagination li a.next.page-numbers,
#sk-seller-listing-wrap .pagination li a.prev.page-numbers {
  background-color: transparent;
  color: #ffffff;
  border: none;
}

#sk-seller-listing-wrap .pagination li a.next.page-numbers:hover,
#sk-seller-listing-wrap .pagination li a.prev.page-numbers:hover {
  background-color: #f7931a;
  color: #ffffff;
}

/* Schwarze Schrift im Abonnementbereich (Shrimp Paket etc.) */
.sk-dashboard-subscription-wrap .seller_subs_info,
.sk-dashboard-subscription-wrap .seller_subs_info span {
  color: #000 !important;
}


/* ===== Layout: 3 Desktop / 2 Tablet / 1 Mobile via Grid ===== */
.sk-subscription-content .pack_content_wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* Desktop: 3 Spalten */
  column-gap: 18px !important;  /* horizontaler Abstand zwischen Karten */
  row-gap: 70px !important;     /* vertikaler Abstand zwischen Karten */
}

/* Karten-Basis – Styling wie gehabt, Breite steuert das Grid */
.sk-subscription-content .pack_content_wrapper .product_pack_item {
  /* frühere feste Maße sicher neutralisieren */
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;

  /* dein bestehendes Kartendesign */
  position: relative;
  background: #252d38;
  padding: 15px;
  display: flex;
  justify-content: center;

  /* natürlicher Schatten + sanft abgerundet */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
              0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (max-width: 960px) {
  .sk-subscription-content .pack_content_wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .sk-subscription-content .pack_content_wrapper {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Preis-/Anzahl-Kreis oben: BTC-Orange, zentriert, Text weiss ===== */
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price *,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price .woocommerce-Price-amount,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price .woocommerce-Price-amount bdi {
  color: #fff !important; /* Weiss nur im Kreis */
}

.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: -47px;
  transform: translateX(-50%);
  background: #F7931A !important;   /* Bitcoin-Orange */
  border-radius: 50%;
  display: flex;                     /* saubere Zentrierung */
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.25), 0 2px 4px rgba(0,0,0,.2);
}

/* ===== Buttons in Bitcoin-Orange ===== */
.sk-subscription-content .buy_pack_button a.sk-btn,
.sk-subscription-content .buy_pack_button a.sk-btn-theme {
  background-color: #F7931A !important;   /* Bitcoin-Orange */
  border-color: #F7931A !important;
  color: #fff !important;                 /* weisse Schrift */
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.sk-subscription-content .buy_pack_button a.sk-btn:hover,
.sk-subscription-content .buy_pack_button a.sk-btn-theme:hover {
  background-color: #d97e10 !important;   /* etwas dunkler bei Hover */
  border-color: #d97e10 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(247,147,26,0.3);
}

/*-- Dokan Upload Product Pictures --*/

/* === Einheitlicher Stil für alle Upload-Boxen (Dark Theme) === */

/* Hauptbild-Upload */
.sk-feat-image-upload {
  border: 2px solid #3a3f48 !important;
  background-color: #232a34 !important;
  border-radius: 10px !important;
  transition: all 0.2s ease-in-out;
}

.sk-feat-image-upload:hover {
  border-color: #f6c343 !important; /* sanftes Lightning-Gelb beim Hover */
  background-color: #2b3240 !important;
}


/* === Dokan Banner Upload Box (nur Design, keine Funktion geändert) === */
#sk-banner-wrapper.sk-banner {
  border: 2px solid #3a3f48 !important;          /* dezente, dunkle Umrandung */
  background: #232a34 !important;                /* dunkle Fläche, passend zum Theme */
  border-radius: 10px !important;                /* abgerundete Ecken */
  overflow: hidden !important;
  transition: all 0.2s ease-in-out;
}

/* Hover-Effekt: sanftes Highlight in Lightning-Gelb */
#sk-banner-wrapper.sk-banner:hover {
  border-color: #f6c343 !important;              /* Lightning-Gelb beim Hover */
  background-color: #2b3240 !important;          /* etwas hellerer Hintergrund */
  box-shadow: 0 0 12px rgba(246,195,67,0.15);
}

/* Bild selbst bleibt unberührt */
#sk-banner-wrapper.sk-banner img.sk-banner-img {
  border-radius: 6px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.sk-settings-content .sk-map-wrap::after {
  content: "💡 Hinweis: Bitte einfach nur den Ort angeben (z. B. Zürich). Straße & Hausnummer sind nicht nötig.";
  display: block;
  margin: 6px 4px 0;
  font-size: .9rem;
  line-height: 1.35;
  color: #e74c3c;                  /* Rot wie Rahmen */
  opacity: .95;
}

/* === Hinweis + Rote Umrandung für Dokan-Karte === */
.sk-settings-content .sk-map-wrap {
  position: relative;
  border: 2px solid #e74c3c !important;       /* rote Umrandung */
  border-radius: 6px;
  padding: 4px;
}

.sk-settings-content .sk-map-wrap::after {
  content: "💡 Hinweis: Bitte einfach nur den Ort angeben (z. B. Zürich). Straße & Hausnummer sind nicht nötig.";
  display: block;
  margin: 6px 4px 0;
  font-size: .9rem;
  line-height: 1.35;
  color: #e74c3c;                  /* Rot wie Rahmen */
  opacity: .95;
}

/*----------------------------------------------------*/
/*--Dokan Banner Settings make Upload visible again --*/
/*----------------------------------------------------*/

.sk-settings-content .sk-settings-area .sk-banner 
{ 
	max-width: 625px; max-height: 400px !important; 
}
@media (max-width: 767px) {
  .sk-settings-content .sk-settings-area .sk-banner {
    min-height: 50px !important;   /* Dokan setzt bei ~430px min-height: unset → wieder erzwingen */
    height: auto !important;
    width: auto !important;
  }
}
@media (max-width: 767px) {
  .sk-dashboard .sk-settings-area #sk-banner-wrapper,
  .sk-dashboard .sk-settings-area #sk-banner-wrapper .sk-banner,
  .sk-dashboard .sk-settings-area #sk-banner-wrapper .button-area {
    position: relative !important;
    z-index: 1000 !important;
  }

  /* Profilbild-Block darf NICHT in den Banner schieben */
  .sk-dashboard .sk-settings-area #sk-profile-picture-wrapper {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 16px !important; /* Abstand schaffen */
    clear: both !important;
    transform: none !important;  /* falls irgendwo ein Transform aktiv war */
  }

  /* etwas Luft unter dem Banner, damit nichts überlappt */
  .sk-dashboard .sk-settings-area #sk-banner-wrapper {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .sk-dashboard .sk-settings-area #sk-banner-wrapper,
  .sk-dashboard .sk-settings-area #sk-banner-wrapper * {
    pointer-events: auto !important;
  }
}

/* Maximale Höhe für das Profilbild im Store-Header */
.sk-single-store .profile-info-box .profile-info-img {
  max-height: 370px !important;
  object-fit: cover !important;
  display: block;
  margin: 0 auto; /* optional: zentrieren */
}
@media (max-width: 768px) {
  .sk-single-store .profile-info-box .profile-info-img {
    max-height: 250px !important;
  }
}

/*-----------------------*/
/*---- Dokan Sidebar ----*/
/*-----------------------*/

/* 1) Immer offen halten (Basis) */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu > ul.navigation-submenu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;       /* kein Overlay-Dropdown */
  max-height: none !important;
  pointer-events: auto !important;
  box-shadow: none !important;

  /* Kein Einsprung/Slide */
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition: none !important;
}

/* 2) Auch im :hover-Zustand unverändert lassen */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu:hover > ul.navigation-submenu,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu.active:hover > ul.navigation-submenu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition: none !important;
}

/* 3) Falls der Einzug durch das Submenu-UL oder dessen LI kommt */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu > ul.navigation-submenu li {
  padding-left: inherit !important;  /* oder 0, wenn du komplett ohne Einzug willst */
  margin-left: 0 !important;
}

/* 4) Manche Themes schieben beim Hover den Parent-Link ein – neutralisieren */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu:hover > a {
  padding-left: inherit !important;  /* ggf. festen Wert setzen */
  transform: none !important;
}

/* Nur das Eltern-Link von "Einstellungen" stabilisieren – gleiche Optik in allen Zuständen */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.settings.has-submenu > a,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.settings.has-submenu:hover > a,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.settings.has-submenu.submenu-hovered > a,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.settings.has-submenu.active > a {
  display: block;                 /* verhindert Flex-/Center-Effekte */
  width: 100%;
  text-align: left !important;

  /* feste "Normal"-Werte, nicht inherit */
  padding: 12px 16px 12px 18px !important; /* TOP RIGHT BOTTOM LEFT */
  margin: 0 !important;

  /* kein Verschieben */
  left: auto !important;
  transform: none !important;

  /* Hover-Optik nicht verändern */
  background: inherit !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Eltern-Link "Einstellungen" ausblenden – Kinder bleiben sichtbar */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.settings.has-submenu > a {
  display: none !important;
}

/* --- Mobile: kein Doppel-Highlight, sauberes Orange nur auf dem getippten Link --- */
.sk-layout .font-bold {
  font-weight: 700;
  font-size: larger;
}

/* 1) Parent-Container (Settings mit Submenu) nicht einfärben, auch wenn .active/.submenu-hovered */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu.active,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu.submenu-hovered,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu.active > a,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.has-submenu.submenu-hovered > a {
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

/* 3) Orange nur auf dem tatsächlich interagierten Child-Link (Tap/Hover/Focus) */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu
  li.has-submenu > ul.navigation-submenu > li > a:hover,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu
  li.has-submenu > ul.navigation-submenu > li > a:focus,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu
  li.has-submenu > ul.navigation-submenu > li > a:active,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu
  li.has-submenu > ul.navigation-submenu > li.current > a {
  background: #F7931A !important;   /* dein Orange */
  color: #fff !important;
  box-shadow: none !important;
}
@media (max-width: 430px) {
  .sk-dashboard .sk-product-listing .sk-product-listing-area .sk-product-search-form .sk-btn {
    width: 25%;
    margin-bottom: 10px;
  }
}
@media (max-width: 430px) {
  .sk-dashboard .sk-product-listing .sk-product-listing-area .sk-product-search-form .sk-form-group {
    margin-bottom: 10px;
    margin-right: 0;
    width: 73%;
  }
}

/* Sidebar Overflow korrigieren für Tooltips etc. */
.sk-dashboard .sk-dash-sidebar {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

/*-- Subscrptions --*/

.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price {
  background-color: #F7931A !important;
}

/* Paket-Titel (z. B. Shrimp) in Orange */
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_content h2 {
  color: #F7931A;
}

/* ==========================================================
 * DOKAN – Einheitliches Layout für Sidebar & Content
 * Gilt für:
 *  - Shop-Einstellungen:  article.sk-settings-area
 *  - Produktliste:        .sk-product-listing
 * ========================================================== */

/* 1) Layout-Grundlage: Sidebar links, Content rechts, Abstand via gap */
.sk-dashboard .sk-dashboard-wrap {
  display: flex !important;
  flex-wrap: nowrap !important;     /* kein Umbruch auf Desktop */
  align-items: stretch !important;  /* gleiche Höhe für beide Spalten */
  gap: 20px !important;             /* Abstand zwischen Sidebar & Content */
}
@media (min-width: 992px) {
  .sk-dashboard .sk-dash-sidebar {
    flex: 0 0 17% !important;
    max-width: 17% !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .sk-dashboard .sk-dashboard-content {
    width: auto !important;         /* evtl. 83%-Vorgaben überschreiben */
    flex: 1 1 0% !important;        /* Restbreite, kein Umbruch */
    min-width: 0 !important;        /* verhindert Überlauf durch Inhalte */
    box-sizing: border-box !important;
  }
}
@media (max-width: 991px) {
  .sk-dashboard .sk-dashboard-wrap {
    flex-direction: column !important;
    gap: 0 !important;              /* kein doppelter Abstand */
  }

  /* Nur Content oben etwas Luft geben, wenn gestapelt */
  .sk-dashboard .sk-dashboard-content > article.sk-settings-area,
  .sk-dashboard .sk-dashboard-content.sk-product-listing {
    margin-top: 20px !important;
  }
}


/* (optional) reine Optik: Sidebar-Rundung links beibehalten */
.sk-dashboard .sk-dash-sidebar {
  border-radius: 10px !important;
  overflow: hidden;                 /* saubere Rundung bei Kind-Elementen */
}

.sk-dashboard .sk-dashboard-content {
  padding: 2px 2px 2px;
  overflow: hidden;
  margin-top: 0px;
  flex: 5 auto;
}

/* ----------------------------------------------------------
 * Fix: Sidebar behält obere und untere linke Rundung
 * ---------------------------------------------------------- */
.sk-dashboard .sk-dash-sidebar {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  overflow: hidden !important; /* sorgt dafür, dass Inhalt nicht überlappt */
}

/* ----------------------------------------------------------
 * Content – rechte Ecken bleiben rund
 * ---------------------------------------------------------- */
.sk-dashboard .sk-dashboard-content > article.sk-settings-area,
.sk-dashboard .sk-dashboard-content.sk-product-listing {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

/* ----------------------------------------------------------
 * Dokan: Produktbearbeitung – gleiches Design wie Produktliste / Shop-Settings
 * ---------------------------------------------------------- */
.sk-dashboard .sk-dashboard-content.sk-product-edit {
  padding: 20px 24px !important;         
                
}

/* ----------------------------------------------------------
 * Dokan: Abonnement/Subscription – gleicher Box-Look
 * (wirken auch bei dynamischem Rendern)
 * ---------------------------------------------------------- */

@media (max-width: 767px) { .sk-layout .mt-4 {
  margin-top: 1rem;
  padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .sk-dashboard .sk-dashboard-content {
    margin-top: 20px !important;
  }
}

.sk-dashboard .sk-dashboard-content {
  background-color: #252d38 !important;  /* gleicher Grauton */
  border-radius: 8px !important;         /* gleiche Rundung */
  padding: 20px 20px !important;
}
@media (max-width: 991px) {
  .sk-dashboard .sk-dashboard-content {
    margin-top: 20px !important;
  }
}

/*------------------------*/
/*  Dokan Shop Overview   */
/*------------------------*/

#sk-seller-listing-wrap ul.sk-seller-wrap li .store-footer {
  background: #252d38;
  position: relative;
  padding: 15px 20px;
}

#sk-seller-listing-wrap ul.sk-seller-wrap li .store-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

#sk-store-listing-filter-wrap {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 1px 1px 10px 1px #E9E9E9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#sk-store-listing-filter-form-wrap {
  background: #ffffff;
  margin-top: 32px;
  padding: 32px 20px 20px 20px;
  box-shadow: 1px 1px 10px 0px #E9E9E9;
  position: relative;
}
@media (max-width: 768px) {
  .sk-w4.ajax_prev.sk-text-left {
    margin-left: 0 !important;
    text-align: center !important;
    width: 100%;
  }

  .sk-w4.ajax_prev.sk-text-left input.sk-btn {
    display: inline-block;
    margin: 0 auto;
  }
}


/*-----NOTYETORDERED-----*/

/* ----------------------------------------------------------
 * Dokan: nur den Inhaltsbereich (Article) als graue Karte
 * mit Innenabstand darstellen – Sidebar bleibt unberührt
 * ---------------------------------------------------------- */

.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price .dps-rec-period {
  color: #F7931A !important;
}

.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_price .dps-rec-period {
	color: black;
}

/* Preiszahl in den Abopaketen mittig ausrichten */
.sk-subscription-content .pack_price {
  text-align: center;
}

.sk-subscription-content .pack_price .amount {
  display: inline-block; /* verhindert, dass es über die ganze Breite streckt */
}

/* Dokan Dashboard Produkte in die Mitte */

.sk-dashboard .sk-dash-left {
     padding-top: 15px;
	  float: none;
    margin: auto;
    display: block !important;
    text-align: left;
}

/* Button-Margen bei Filterbereich */
.sk-order-filter-serach .sk-left .sk-btn-sm {
    margin-top: 10px !important;
}

/* „Filter“-Button wieder nach oben holen */
.sk-order-filter-serach .sk-left .sk-btn-sm[name="sk_order_filter"] {
    margin-top: 0 !important;
    align-self: flex-start;
}

.sk-product-listing .sk-product-listing-area table.product-listing-table td.column-primary a {
  color: white;
  text-decoration: none; /* optional, falls kein Unterstrich beim normalen Zustand */
}

/* Schriftfarbe im Dropdown-Feld */
.sk-store-products-filter-area .orderby-search {
  color: black; /* oder #aaa für etwas heller */
}

/* Suchen Button Shop */
.sk-store-products-filter-area .search-store-products {
	margin-left: 10px;
}
@media (max-width: 480px) {
  .sk-store-products-filter-area .search-store-products {
    margin-top: 5px;
		margin-left: 1px;
		padding-left: 8px
  }
}

.sk-store-custom-fields i.fa-bolt {
    position: relative;
    top: 5px; /* 5px nach unten verschieben */
}

.sk-store-custom-fields code {
    display: inline-block;
    padding-top: 5px;
}

/* Hide Quickedit in Dokan Dashboard Product overview */

.sk-product-listing .sk-product-listing-area table.product-listing-table td.column-primary a {
	color: white;
}
@media only screen and (max-width: 480px) {
    .sk-dashboard-header h1.entry-title {
        font-size: 20px !important;
        word-break: break-word;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .sk-dashboard-header .sk-update-setting-top {
        font-size: 14px;
        margin-bottom: 12px;
        display: block;
    }

    .sk-settings-content .sk-dashboard-header-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .sk-dashboard-header {
        padding: 0 10px;
    }

    .sk-settings-content {
        overflow-x: hidden !important;
    }
}
@media only screen and (max-width: 768px) {
  .sk-settings-content .sk-settings-area .sk-update-setting-top {
    width: 100% !important;
    float: none !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 15px;
  }

  .sk-update-setting-top-button {
    margin: 0 auto !important;
    float: none !important;
  }
}

.sk-layout .w-full.rounded.transition-all.duration-300.border.mb-5 {
  color: #fff !important;
}

.sk-advertisement-container {
  border: 4px solid #f7931a; /* Bitcoin-Orange */
  padding: 15px;             /* Abstand nach innen */
  border-radius: 8px;        /* optional: abgerundete Ecken */
  box-sizing: border-box;    /* Rahmen + Padding sauber berechnet */
	margin-bottom: 25px;
}

.sk-product-listing .sk-product-listing-area table.product-listing-table td.column-primary a:hover {
  color: #F7931A; /* offizielles Bitcoin Orange */
}

.sk-dashboard header.sk-dashboard-header h1 {
	padding-bottom: 25px
	
}

/* Zelle für das Werbe-Icon mittig ausrichten */
.sk-dashboard td.product-advertisement-td {
  text-align: center;           /* Icon + Text zentrieren */
  white-space: normal !important; /* evtl. von vorher: nowrap wieder aufheben */
  padding: 6px 4px;
}

/* Icon mittig (Font-Awesome Stack) */
.sk-dashboard td.product-advertisement-td .fa-stack {
  display: inline-block !important;
  margin: 0 auto;               /* horizontal mittig */
  vertical-align: middle;
}

/* Text UNTER dem Icon, zentriert */
.sk-dashboard td.product-advertisement-td::after {
  content: "Produkt bewerben";
  display: block;               /* unter dem Icon */
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #F7931A;               /* Bitcoin-Orange */
}

.sk-layout-content-area h4.text-base.font-medium {
  color: #000 !important;
}

/* Vendor-Name auf Produktseite weiß */
body.single-product .sk-vendor-info-wrap .sk-vendor-name h5 {
    color: #fff !important;
}

/* Kontaktinfos im Store-Header */
ul.sk-store-custom-fields,
ul.sk-store-custom-fields li,
ul.sk-store-custom-fields ol,
ul.sk-store-custom-fields ul {
    margin: 1px !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Action-Links (z.B. Bearbeiten, Löschen) sichtbar & grau */
.sk-dashboard .row-actions span a {
    color: grey !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hover-Farbe auf Bitcoin-Orange */
.sk-dashboard .row-actions span a:hover {
    color: #f7931a !important;
    text-decoration: underline;
    background: transparent !important;
}

/* Dashboard-Schrift allgemein grau */
.sk-dashboard,
.sk-dashboard .sk-dash-sidebar,
.sk-dashboard .sk-dashboard-content,
.sk-dashboard .sk-dashboard-area,
.sk-dashboard .sk-dash-left,
.sk-dashboard .sk-dash-right,
.sk-dashboard .sk-dashboard-header,
.sk-dashboard .sk-dashboard-widget {
    color: grey !important;
}

/* Label-Texte in Produktformularen */
.sk-dashboard .product-edit-container label,
.sk-dashboard .product-edit-new-container label {
    color: #aaa !important;
}

/* Bereichsüberschriften in Schwarz */
.sk-dashboard .sk-section-heading h2,
.sk-dashboard .sk-section-heading h2 i {
    color: #000 !important;
}

/* Tabellenüberschriften in Produktliste weiß */
.sk-dashboard #sk-product-list-table thead th {
    color: #fff !important;
}

/* Filter-Navigation (z. B. All, Published, etc.) */
.sk-dashboard .sk-listing-filter.sk-left li a {
    color: #fff !important;
}

/* Aktives Filterelement in Orange */
.sk-dashboard .sk-listing-filter.sk-left li.active a {
    color: #ff6600 !important;
    font-weight: bold;
}

/* Bestellstatus-Links (weiß) */
.sk-dashboard .sk-orders-area .order-statuses-filter li a {
    color: #fff !important;
}

/* Aktiver Bestellstatus orange & fett */
.sk-dashboard .sk-orders-area .order-statuses-filter li.active a {
    color: #ff6600 !important;
    font-weight: bold;
}

/* Store Settings: Labels weiß */
.sk-dashboard .sk-settings-area .sk-control-label {
    color: #fff !important;
}

/* Infotexte (z. B. „Zeige E-Mail-Adresse“) */
.sk-dashboard .sk-text-left {
    color: #fff !important;
}

/* Formular-Label im Store-Bereich */
.sk-dashboard .sk-section-content .form-label {
    color: #000 !important;
}

#sk-store-listing-filter-form-wrap .store-lists-other-filter-wrap .sk-geolocation-location-filters .range-slider-container .sk-range-slider-value {
  width: 100px !important;
  font-size: 14px !important;
  color: black;
}

/* Produktname im Map-Popup schwarz */
.sk-geo-map-info-window .info-title a {
  color: #000 !important;
  text-decoration: none !important;
}

/* Adresse im Map-Popup schwarz */
.sk-geo-map-info-window address {
  color: #000 !important;
}
/* ----------------------------------------------------------
 * MOBILE-FIX für Flex-Listen im Dokan-Dashboard
 * ---------------------------------------------------------- */

@media (max-width: 640px) {
  .sk-dashboard .sk-dashboard-content
  ul.flex.justify-center.items-baseline {
    flex-direction: column !important;
    align-items: center !important;
    gap: .25rem !important;
  }
  .sk-dashboard .sk-dashboard-content
  ul.flex.justify-center.items-baseline > li {
    margin-left: 0 !important;
    list-style: disc !important;
    list-style-position: inside !important;
  }
}

/* ----------------------------------------------------------
 * Dokan: Followers & Rezensionen – gleicher Box-Look wie Welcome Box
 * ---------------------------------------------------------- */

@media (max-width: 991px) {
  .sk-dashboard .sk-dashboard-content > article.sk-settings-area {
    margin-top: 0px !important
  }
}
