/**
 * 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.) */
/* seller_subs_info text colours — box styling handled below */
.sk-dashboard-subscription-wrap .seller_subs_info span,
.sk-dashboard-subscription-wrap .seller_subs_info p {
  color: #c4cdd8 !important;
  font-size: 15px !important;
}


/* ===== Layout: 2 Desktop / 1 Mobile via Grid ===== */
.sk-subscription-content .pack_content_wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  column-gap: 24px !important;
  row-gap: 70px !important;
}

/* Karten-Basis */
.sk-subscription-content .pack_content_wrapper .product_pack_item {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  position: relative;
  background: #1e2b3c !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  padding: 28px 24px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  border-radius: 10px !important;
  color: #c4cdd8 !important;
  text-align: center;
}
@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: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
  background: #F7931A !important;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0;
  box-shadow: 0 6px 20px rgba(247,147,26,0.4), 0 2px 4px rgba(0,0,0,.3);
}

/* ===== 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;
}



/* 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;
  }
}

@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%;
  }
}


/*-- Subscrptions --*/

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

/* Paket-Titel in Orange */
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_content h2 {
  color: #F7931A !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}
/* Paket-Body-Text hell + lesbar */
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_content,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_content p,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_short_desc,
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_short_desc p {
  color: #c4cdd8 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_data_option {
  color: #c4cdd8 !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  margin: 14px 0 !important;
}
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_data_option strong {
  color: #e8ecf0 !important;
  font-size: 19px !important;
}

/* ==========================================================
 * DASHBOARD LAYOUT — sidebar + content as one unified block
 * The WRAP gets the border-radius + overflow:hidden.
 * Sidebar and content have NO individual radius — the parent clips them.
 * ========================================================== */

/* Outer container: one seamless rounded block */
.sk-dashboard .sk-dashboard-wrap {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0 !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

/* Sidebar: fixed width, no individual radius, thin right divider */
.sk-dashboard .sk-dash-sidebar {
  flex: 0 0 220px !important;
  max-width: 220px !important;
  min-width: 220px !important;
  align-self: stretch !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  border-right: 1px solid rgba(255,255,255,0.07) !important;
}

/* Content: fills remaining width, no individual radius */
.sk-dashboard .sk-dashboard-content {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
  background-color: #252d38 !important;
  padding: 24px !important;
  overflow: visible;
  margin-top: 0 !important;
}

/* Mobile: stack vertically */
@media (max-width: 991px) {
  .sk-dashboard .sk-dashboard-wrap {
    flex-direction: column !important;
    border-radius: 8px !important;
  }
  .sk-dashboard .sk-dash-sidebar {
    flex: none !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  .sk-dashboard .sk-dashboard-content {
    padding: 16px !important;
  }
}

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

/*------------------------*/
/*  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: #fff !important;
}

/* 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: 22px !important;
        word-break: break-word;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .sk-dashboard-header .sk-update-setting-top {
        font-size: 16px;
        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 th.product-advertisement-th {
  text-align: center !important;
}
.sk-dashboard th.product-advertisement-th .fa-stack {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.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: 15px;
  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 — dark theme */
.sk-dashboard .sk-section-heading h2,
.sk-dashboard .sk-section-heading h2 i {
    color: #e8ecf0 !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: #c4cdd8 !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: 16px !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
  }
}

/* ----------------------------------------------------------
 * Dashboard sidebar nav — pill-style menu items
 * ---------------------------------------------------------- */

/* Sidebar base */
.sk-dashboard .sk-dash-sidebar {
  background: #1a2332 !important;
}
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu {
  background: transparent !important;
  padding: 8px 0 !important;
}

/* Each nav li: inset pill container (skip quicklinks) */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:not(.sk-common-links) {
  margin: 2px 8px !important;
  border-radius: 8px !important;
  background: transparent !important;
  position: relative;
}

/* Remove all core triangle arrows */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li::after,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:before {
  display: none !important;
}

/* Nav link default */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:not(.sk-common-links) > a {
  padding: 10px 12px !important;
  margin: 0 !important;
  color: #8a9bb0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Fixed-width icon so all labels align at the same horizontal position */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:not(.sk-common-links) > a > i {
  flex: 0 0 18px !important;
  width: 18px !important;
  text-align: center !important;
}

/* Hover: subtle highlight on the li */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:not(.sk-common-links):not(.active):hover {
  background: rgba(255,255,255,0.07) !important;
}
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li:not(.sk-common-links):not(.active):hover > a {
  color: #e8ecf0 !important;
  background: transparent !important;
}

/* Active: orange pill on the li */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.active:not(.sk-common-links) {
  background: #F7931A !important;
}
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.active:not(.sk-common-links) > a {
  color: #fff !important;
  background: transparent !important;
}

/* Loading state: spinner in top-right corner of content */
.sk-dashboard .sk-dashboard-content.sk-loading {
  position: relative !important;
}
.sk-dashboard .sk-dashboard-content.sk-loading::after {
  content: "" !important;
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 20px !important;
  height: 20px !important;
  border: 3px solid rgba(247,147,26,0.25) !important;
  border-top-color: #F7931A !important;
  border-radius: 50% !important;
  animation: sk-nav-spin 0.7s linear infinite !important;
  z-index: 100 !important;
}
@keyframes sk-nav-spin {
  to { transform: rotate(360deg); }
}

/* Product table: status badge pills */
.sk-dashboard .product-listing-table td .sk-status-published,
.sk-dashboard .product-listing-table td mark.instock {
  color: #2ecc71 !important;
  font-weight: 600 !important;
}
.sk-dashboard .product-listing-table td .sk-status-pending,
.sk-dashboard .product-listing-table td mark.onbackorder {
  color: #f39c12 !important;
  font-weight: 600 !important;
}
.sk-dashboard .product-listing-table td .sk-status-draft,
.sk-dashboard .product-listing-table td mark.outofstock {
  color: #e74c3c !important;
  font-weight: 600 !important;
}

/* Product table row hover */
.sk-dashboard .product-listing-table tbody tr:hover {
  background: rgba(255,255,255,0.03) !important;
}

/* Product table header labels */
.sk-dashboard .product-listing-table thead th {
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  color: #8a9bb0 !important;
}

/* ----------------------------------------------------------
 * Store page profile & tabs (from vendor-restyle plugin)
 * ---------------------------------------------------------- */

@media (min-width: 1200px) {
  .dokan-single-store .profile-frame .profile-info-box.profile-layout-default .profile-info-summery-wrapper .profile-info-summery .profile-info {
    padding: 5px 40px;
    padding-bottom: 5px;
  }
}

.dokan-single-store .profile-info-box.profile-layout-default {
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.18) !important;
  margin-bottom: 24px !important;
}
.dokan-single-store .profile-frame {
  padding: 0 !important;
  position: relative !important;
  background-size: cover !important;
  background-color: transparent !important;
}
.dokan-single-store .profile-info-head .store-name {
  color: #F7931A !important;
  font-size: 23px !important;
  margin-bottom: 11px !important;
}
.dokan-single-store .profile-info-head .profile-img.profile-img-circle img {
  border-radius: 50% !important;
  background: #F7931A !important;
  border: 3px solid #F7931A !important;
  width: 80px !important;
  height: 80px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.dokan-single-store .profile-info-box .profile-info-summery .profile-info {
  position: relative !important;
  top: 0 !important;
  padding-bottom: 20px !important;
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
  overflow: visible !important;
  line-height: 1.4 !important;
}
@media (max-width: 1199px) {
  .dokan-single-store .profile-frame .profile-info-box .profile-info-summery-wrapper {
    position: relative !important;
    background-color: #252d38 !important;
    border-color: #252d38 !important;
    color: #fff !important;
  }
  .dokan-single-store .profile-info-head .profile-img {
    text-align: center !important;
    margin-bottom: 12px !important;
    padding-top: 10px !important;
  }
}
@media (min-width: 1200px) {
  .dokan-single-store .profile-frame .profile-info-box .profile-info-summery-wrapper {
    background-color: transparent !important;
    border-color: transparent !important;
  }
}

.dokan-single-store .dokan-store-tabs {
  --tab-bg: #181e27 !important;
  --tab-pill: #232b36 !important;
  --tab-text: #cfd6df !important;
  --tab-text-active: #fff !important;
  --tab-border: #2e3846 !important;
  --accent: #F7931A !important;
  --shadow: 0 14px 30px rgba(0,0,0,.28) !important;
  background: var(--tab-bg) !important;
  border: 1px solid var(--tab-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow) !important;
  padding: 12px 12px 14px !important;
  margin: 25px 0 !important;
}
.dokan-single-store .dokan-store-tabs .dokan-modules-button,
.dokan-single-store .dokan-store-tabs .dokan-list-inline {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.dokan-single-store .dokan-store-tabs .dokan-modules-button {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.dokan-single-store .dokan-store-tabs .dokan-modules-button li { float: none !important; }
.dokan-single-store .dokan-store-tabs .dokan-modules-button li > a,
.dokan-single-store .dokan-store-tabs .dokan-share-btn-wrap a,
.dokan-single-store .dokan-store-tabs .dokan-store-follow-store-button-container a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: var(--tab-pill) !important;
  color: var(--tab-text) !important;
  border: 1px solid var(--tab-border) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}
.dokan-single-store .dokan-store-tabs .dokan-modules-button li > a:hover,
.dokan-single-store .dokan-store-tabs .dokan-share-btn-wrap a:hover {
  border-color: rgba(247,147,26,.45) !important;
}
.dokan-single-store .dokan-store-tabs .dokan-list-inline {
  display: flex !important;
  gap: 10px !important;
  padding-top: 10px !important;
  border-top: 1px solid var(--tab-border) !important;
  justify-content: center !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}
.dokan-single-store .dokan-store-tabs .dokan-list-inline::-webkit-scrollbar { display: none !important; }
.dokan-single-store .dokan-store-tabs .dokan-list-inline li { margin: 0 !important; }
.dokan-single-store .dokan-store-tabs .dokan-list-inline li a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  background: var(--tab-pill) !important;
  color: var(--tab-text) !important;
  border: 1px solid var(--tab-border) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease !important;
}
.dokan-single-store .dokan-store-tabs .dokan-list-inline li a:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(247,147,26,.45) !important;
}
.dokan-single-store .dokan-store-tabs .dokan-list-inline li.active a,
.dokan-single-store .dokan-store-tabs .dokan-list-inline li a[aria-current="page"] {
  background: linear-gradient(180deg, rgba(247,147,26,.18), rgba(247,147,26,.10)) !important;
  color: var(--tab-text-active) !important;
  border-color: rgba(247,147,26,.65) !important;
  position: relative !important;
}
.dokan-single-store .dokan-store-tabs .dokan-list-inline li.active a::after {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: -8px !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(247,147,26,.15) !important;
}
@media (min-width: 992px) {
  .dokan-single-store .dokan-store-tabs .dokan-list-inline { justify-content: center !important; }
}
@media (max-width: 640px) {
  .dokan-single-store .dokan-store-tabs .dokan-modules-button {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .dokan-single-store .dokan-store-tabs .dokan-modules-button li > a,
  .dokan-single-store .dokan-store-tabs .dokan-share-btn-wrap a,
  .dokan-single-store .dokan-store-tabs .dokan-store-follow-store-button-container a {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 14px !important;
  }
  .dokan-single-store .dokan-store-tabs .dokan-list-inline {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    overflow-x: visible !important;
  }
  .dokan-single-store .dokan-store-tabs .dokan-list-inline li a {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 14px !important;
  }
  .dokan-single-store .dokan-store-tabs .dokan-list-inline li.active a::after {
    left: 8px !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    width: 6px !important;
    height: 60% !important;
    transform: translateY(-50%) !important;
    border-radius: 6px !important;
  }
}
.dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
  display: block !important;
  flex: 0 0 auto !important;
  margin-right: 0 !important;
  border-right: 0 !important;
}
@media (max-width: 480px) {
  .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
    margin-right: unset;
    border-bottom: transparent;
  }
}

#vendor-biography {
  background: #252d38 !important;
  border: 1px solid #2e3846 !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.28) !important;
  padding: 20px 22px !important;
  margin: 18px 0 28px !important;
  color: #cfd6df !important;
}
#vendor-biography h2,
#vendor-biography h3,
#vendor-biography h4 { color: #ffffff !important; margin: 0 0 10px !important; line-height: 1.25 !important; }
#vendor-biography h2 { font-size: 30px !important; font-weight: 800 !important; }
#vendor-biography h3 { font-size: 30px !important; font-weight: 700 !important; }
#vendor-biography h4 { font-size: 20px !important; font-weight: 700 !important; }
#vendor-biography p,
#vendor-biography li { color: #cfd6df !important; font-size: 17px !important; line-height: 1.6 !important; }
#vendor-biography p { margin: 0 0 12px !important; }
#vendor-biography ul,
#vendor-biography ol { margin: 0 0 12px 18px !important; }
#vendor-biography a { color: #F7931A !important; text-decoration: none !important; border-bottom: 1px dashed rgba(247,147,26,.4) !important; }
#vendor-biography a:hover { border-bottom-color: rgba(247,147,26,.8) !important; }
#vendor-biography img { max-width: 100% !important; height: auto !important; display: block !important; border-radius: 10px !important; border: 1px solid #2e3846 !important; box-shadow: 0 8px 18px rgba(0,0,0,.25) !important; margin: 10px auto !important; background: #0f141b !important; }
#vendor-biography hr { border: 0 !important; border-top: 1px solid #2e3846 !important; margin: 16px 0 !important; }
@media (max-width: 640px) {
  #vendor-biography { padding: 16px !important; border-radius: 14px !important; }
  #vendor-biography h2 { font-size: 22px !important; }
  #vendor-biography h3 { font-size: 19px !important; }
}

/* ==========================================================
 * PRODUCT LISTING — modern simplified table
 * ========================================================== */

/* Header: stacked — title, then button, then search */
.sk-dashboard .sk-product-listing-header--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.sk-dashboard .sk-product-listing-header--stacked h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.sk-dashboard .sk-product-listing-header--stacked .sk-btn-btc {
  margin: 0;
}

/* Search form inside header */
.sk-dashboard .sk-product-listing-header--stacked .sk-product-search-form {
  width: 100%;
  max-width: 420px;
  margin: 0;
}
.sk-product-search-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sk-product-search-inner .sk-form-control {
  flex: 1;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #e8ecf0 !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  font-size: 16px !important;
}
.sk-product-search-inner .sk-form-control::placeholder {
  color: #5a6a7e !important;
}
.sk-product-search-inner .sk-btn-theme {
  padding: 8px 14px !important;
  border-radius: 6px !important;
  flex-shrink: 0;
}

/* Product table: clean, borderless rows */
.sk-dashboard #sk-product-list-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.sk-dashboard #sk-product-list-table thead th {
  padding: 8px 12px;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #6b7a90 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  background: transparent;
}
.sk-dashboard #sk-product-list-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.sk-dashboard #sk-product-list-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}
.sk-dashboard #sk-product-list-table td {
  padding: 12px;
  vertical-align: middle;
  color: #cfd6df;
  background: transparent;
  border: none;
}

/* Image + name combined column */
.sk-dashboard .sk-product-row-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sk-dashboard .sk-product-thumb {
  flex: 0 0 48px;
}
.sk-dashboard .sk-product-thumb img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.sk-dashboard .sk-product-info {
  min-width: 0;
}
.sk-dashboard .sk-product-title {
  display: block;
  font-weight: 600;
  color: #e8ecf0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
.sk-dashboard .sk-product-title:hover {
  color: #F7931A;
}
.sk-dashboard #sk-product-list-table .row-actions {
  font-size: 14px;
  color: #6b7a90;
  margin-top: 3px;
}
.sk-dashboard #sk-product-list-table .row-actions a {
  color: #6b7a90;
}
.sk-dashboard #sk-product-list-table .row-actions a:hover {
  color: #F7931A;
}

/* Status badge pills */
.sk-dashboard #sk-product-list-table .sk-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sk-dashboard #sk-product-list-table .sk-label-success,
.sk-dashboard #sk-product-list-table .sk-label-default { /* publish */
  background: rgba(46,204,113,0.15);
  color: #2ecc71;
}
.sk-dashboard #sk-product-list-table .sk-label-warning { /* pending */
  background: rgba(243,156,18,0.15);
  color: #f39c12;
}
.sk-dashboard #sk-product-list-table .sk-label-danger { /* draft/rejected */
  background: rgba(231,76,60,0.15);
  color: #e74c3c;
}
.sk-dashboard #sk-product-list-table .sk-label-info { /* other */
  background: rgba(100,149,237,0.15);
  color: #6495ed;
}

/* Price column */
.sk-dashboard #sk-product-list-table .col-price {
  white-space: nowrap;
  color: #F7931A;
  font-weight: 600;
}
.sk-dashboard #sk-product-list-table .col-price bdi { color: inherit; }

/* Date column */
.sk-dashboard #sk-product-list-table .col-date {
  font-size: 14px;
  color: #6b7a90;
  white-space: nowrap;
}

/* Hide obsolete check column */
.sk-dashboard #sk-product-list-table .check-column,
.sk-dashboard #sk-product-list-table .manage-column.column-cb {
  display: none;
}

/* Column widths */
.sk-dashboard #sk-product-list-table .col-thumb { width: auto; }
.sk-dashboard #sk-product-list-table .col-status { width: 110px; }
.sk-dashboard #sk-product-list-table .col-price  { width: 100px; }
.sk-dashboard #sk-product-list-table .col-date   { width: 110px; }

/* Hide the bulk-action form elements but keep form for nonce */
.sk-dashboard #sk-bulk-action-selector,
.sk-dashboard #sk-bulk-action-submit {
  display: none !important;
}

/* "No products" empty state */
.sk-dashboard .sk-dashboard-not-product-found {
  text-align: center;
  padding: 48px 24px;
}
.sk-dashboard .sk-blank-product-message {
  color: #6b7a90;
  font-weight: 400;
}

/* ==========================================================
 * SETTINGS FORM — dark card sections
 * ========================================================== */

.sk-settings-form {
  max-width: 100%;
}

/* Section card */
.sk-settings-section {
  background: #1e2633;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Section header */
.sk-settings-section-title {
  display: block;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #dce3ec !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: transparent;
}
.sk-settings-section-title i:first-child {
  color: #F7931A;
  margin-right: 6px;
}

/* Collapsible advanced section */
.sk-settings-advanced > summary {
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  display: flex !important;
}
.sk-settings-advanced > summary::-webkit-details-marker { display: none; }
.sk-settings-advanced[open] .sk-settings-chevron { transform: rotate(180deg); }
.sk-settings-chevron { transition: transform 0.2s ease; margin-left: auto; }
.sk-settings-section-title--toggle { cursor: pointer; }

/* Field row */
.sk-settings-field {
  display: flex;
  align-items: flex-start;
  padding: 13px 20px;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sk-settings-field:last-child { border-bottom: none; }

/* Label column */
.sk-settings-label {
  flex: 0 0 150px;
  font-size: 16px;
  font-weight: 500;
  color: #8a9bb0 !important;
  padding-top: 9px;
  line-height: 1.3;
}

/* Input column */
.sk-settings-input {
  flex: 1;
  min-width: 0;
}

/* All text inputs / textareas inside the form */
.sk-settings-form input[type="text"],
.sk-settings-form input[type="email"],
.sk-settings-form input[type="password"],
.sk-settings-form input[type="tel"],
.sk-settings-form input[type="url"],
.sk-settings-form textarea,
.sk-settings-form select,
.sk-settings-form .sk-form-control {
  background: #252d38 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 6px !important;
  color: #e8ecf0 !important;
  padding: 10px 30px !important;
  font-size: 16px !important;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.sk-settings-form input[type="text"]:focus,
.sk-settings-form input[type="email"]:focus,
.sk-settings-form input[type="password"]:focus,
.sk-settings-form textarea:focus,
.sk-settings-form .sk-form-control:focus {
  border-color: rgba(247,147,26,0.5) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Checkbox rows */
.sk-settings-check-row,
.sk-settings-form .sk-contact-email label,
.sk-settings-form .sk-form-group label:not(.sk-control-label):not(.sk-settings-label) {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 15px !important;
  color: #6b7a90 !important;
  cursor: pointer;
  margin-top: 6px;
}
.sk-settings-form input[type="checkbox"] {
  width: auto !important;
  accent-color: #F7931A;
  cursor: pointer;
}

/* Hint / description text */
.sk-settings-hint,
.sk-settings-form .description,
.sk-settings-form .help-block {
  color: #7a8fa8 !important;
  margin-top: 5px;
  padding: 6px 0;
  line-height: 1.4;
}

/* Map container — strip any stray borders */
.sk-settings-form .sk-map-wrap,
.sk-settings-form .sk-maps-container,
.sk-settings-form .sk-maps-container > div,
.sk-settings-form .mapboxgl-map,
.sk-settings-form .mapboxgl-canvas {
  border: none !important;
  outline: none !important;
}

/* Map hint — more breathing room and readable */
.sk-settings-field .sk-map-wrap + .sk-settings-hint {
  margin-top: 14px;
  font-size: 15px;
  color: #8a9bb0 !important;
}

/* ContactDetails fields injected via hook — override legacy sk-form-group layout */
.sk-settings-form .sk-form-group {
  display: flex;
  align-items: flex-start;
  padding: 13px 20px;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin: 0 !important;
  background: transparent !important;
}
.sk-settings-form .sk-form-group:last-child { border-bottom: none; }
.sk-settings-form .sk-form-group .sk-control-label,
.sk-settings-form .sk-form-group .sk-w3 {
  flex: 0 0 150px !important;
  width: auto !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #8a9bb0 !important;
  padding-top: 9px;
  float: none !important;
  text-align: left !important;
}
.sk-settings-form .sk-form-group .sk-w5,
.sk-settings-form .sk-form-group .sk-w8 {
  flex: 1 !important;
  width: auto !important;
  float: none !important;
}

/* Paywall / feewall row */
.sk-settings-form .sk-form-group strong { color: #e8ecf0 !important; }
.sk-settings-form .sk-form-group .description { color: #4e5e72 !important; }

/* Submit button */
.sk-settings-actions {
  margin-top: 16px;
}
.sk-settings-save-btn {
  min-width: 180px;
}

/* Banner upload area */
.sk-settings-field--media .sk-banner .button-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Banner image: fill the full width, cap height, cover-crop */
.sk-settings-field--media .image-wrap {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}
/* Allow sk-hide to hide the wrapper (must beat our specificity) */
.sk-settings-field--media .image-wrap.sk-hide {
  display: none !important;
}
.sk-settings-field--media .sk-banner-img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.sk-settings-field--media .sk-remove-banner-image,
.sk-settings-content .sk-settings-area .sk-banner:hover .sk-remove-banner-image {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  left: auto !important;
  z-index: 2 !important;
  width: 28px !important;
  height: 28px !important;
  background: rgba(0,0,0,0.55) !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  line-height: 1 !important;
  padding: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
}
.sk-gravatar-img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  object-fit: cover;
  display: block;
}

/* Center gravatar in its input column */
#sk-profile-picture-wrapper {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
}
#sk-profile-picture-wrapper .gravatar-wrap,
#sk-profile-picture-wrapper .gravatar-button-area {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  gap: 8px;
}

/* Gravatar wrap: stacking context for the remove button */
#sk-profile-picture-wrapper .gravatar-wrap {
  position: relative !important;
  display: inline-flex !important;
}
/* Allow sk-hide to hide the wrapper */
#sk-profile-picture-wrapper .gravatar-wrap.sk-hide {
  display: none !important;
}

/* Override core black full-circle overlay on gravatar */
.sk-settings-content .sk-settings-area .sk-gravatar .sk-remove-gravatar-image,
.sk-settings-content .sk-settings-area .sk-gravatar:hover .sk-remove-gravatar-image,
#sk-profile-picture-wrapper .sk-remove-gravatar-image {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 22px !important;
  height: 22px !important;
  background: rgba(0,0,0,0.65) !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  padding: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

/* "Visit Store" link in header */
.sk-dashboard .sk-store-settign-header-wrap h1 small a {
  font-size: 15px;
  color: #F7931A !important;
  font-weight: 400;
}

/* Quicklinks row: kill any background on the li itself */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.sk-common-links,
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.sk-common-links:hover {
  background: transparent !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Quicklinks: 2 equal columns, icons centered */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.sk-common-links a {
  width: 50% !important;
  text-align: center !important;
  padding: 6% 0 !important;
  border-radius: 6px !important;
}

/* Quicklinks: subtle highlight on each icon, not the whole row */
.sk-dashboard .sk-dash-sidebar ul.sk-dashboard-menu li.sk-common-links a:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

/* Override any white-background legacy rules inside settings */
.sk-settings-form .sk-banner,
.sk-dashboard .sk-settings-area,
.sk-dashboard .sk-settings-content .sk-settings-area {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* Biography TinyMCE wrapper — dark theme */
.sk-settings-field--bio { padding: 16px 20px !important; }
.sk-settings-field--bio .sk-settings-input { width: 100%; }
.sk-settings-form #wp-vendor_biography-wrap .wp-editor-tabs { background: #1a2332; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sk-settings-form #wp-vendor_biography-wrap .wp-switch-editor {
  background: transparent;
  border: none;
  color: #8a9bb0;
  font-size: 14px;
}
.sk-settings-form #wp-vendor_biography-wrap .wp-switch-editor:hover,
.sk-settings-form #wp-vendor_biography-wrap .wp-switch-editor.switch-tmce,
.sk-settings-form #wp-vendor_biography-wrap .wp-switch-editor.switch-html { color: #e8ecf0; }
.sk-settings-form #wp-vendor_biography-wrap .wp-editor-container {
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.sk-settings-form #wp-vendor_biography-wrap { border-radius: 6px; overflow: hidden; }
.sk-settings-form #wp-vendor_biography-wrap .mce-toolbar-grp,
.sk-settings-form #wp-vendor_biography-wrap .mce-top-part { background: #1a2332 !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
.sk-settings-form #wp-vendor_biography-wrap .mce-btn-group .mce-btn { background: transparent !important; border: none !important; }
.sk-settings-form #wp-vendor_biography-wrap .mce-btn-group .mce-btn button { color: #8a9bb0 !important; }
.sk-settings-form #wp-vendor_biography-wrap .mce-btn-group .mce-btn:hover button { color: #e8ecf0 !important; }
/* Text tab textarea */
.sk-settings-form #vendor_biography { background: #252d38 !important; color: #e8ecf0 !important; border: none !important; }

/* ==========================================================================
   Reviews Page
   ========================================================================== */

/* Page header */
.sk-review-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sk-review-page-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #e8ecf0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sk-review-page-header h2 i {
  color: #F7931A;
}

/* Status filter pills */
.sk-review-status-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.sk-review-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #8a9bb0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
}
.sk-review-filter-tab:hover {
  background: rgba(255,255,255,0.1);
  color: #e8ecf0;
  border-color: rgba(255,255,255,0.15);
  text-decoration: none;
}
.sk-review-filter-tab.active {
  background: rgba(247,147,26,0.15);
  border-color: rgba(247,147,26,0.45);
  color: #F7931A;
}
.sk-review-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 600;
  color: #8a9bb0;
}
.sk-review-count.pending {
  background: rgba(247,147,26,0.2);
  color: #F7931A;
}
.sk-review-count.spam {
  background: rgba(220,53,69,0.2);
  color: #e06c75;
}
.sk-review-count.trash {
  background: rgba(255,255,255,0.08);
  color: #6b7a8d;
}

/* Bulk action bar */
.sk-reviews-bulk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  margin-bottom: 12px;
  gap: 12px;
}
.sk-reviews-check-all-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #8a9bb0;
  cursor: pointer;
}
.sk-reviews-check-all-wrap input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #F7931A;
  cursor: pointer;
}
.sk-reviews-bulk-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sk-reviews-bulk-select {
  background: #1a2332 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #c4cdd8 !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  font-size: 15px !important;
}

/* Review card list */
.sk-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual review card */
.sk-review-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #1e2b3c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px;
  transition: background .15s;
  position: relative;
}
.sk-review-card:hover {
  background: #233044;
  border-color: rgba(255,255,255,0.11);
}
.sk-review-card.unapproved {
  border-left: 3px solid #F7931A;
}
.sk-review-card.spam {
  border-left: 3px solid #e06c75;
  opacity: 0.8;
}
.sk-review-card__check {
  padding-top: 2px;
}
.sk-review-card__check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #F7931A;
  cursor: pointer;
}
.sk-review-card__avatar {
  flex-shrink: 0;
}
.sk-review-card__avatar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
}
.sk-review-card__body {
  flex: 1;
  min-width: 0;
}
.sk-review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.sk-review-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sk-review-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #e8ecf0;
}
.sk-review-card__email {
  font-size: 14px;
  color: #5a6a7e;
}
.sk-review-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.sk-review-card__stars {
  display: flex;
  gap: 2px;
  font-size: 15px;
}
.sk-review-card__stars .fas.fa-star {
  color: #F7931A;
}
.sk-review-card__stars .far.fa-star {
  color: #3a4a5c;
}
.sk-review-card__date {
  font-size: 14px;
  color: #5a6a7e;
  white-space: nowrap;
}
.sk-review-card__content {
  font-size: 16px;
  color: #c4cdd8;
  line-height: 1.6;
  margin-bottom: 12px;
  word-break: break-word;
}
.sk-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sk-review-card__view-link {
  font-size: 14px;
  color: #5a7499;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.sk-review-card__view-link:hover {
  color: #F7931A;
  text-decoration: none;
}
.sk-review-card__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
a.sk-review-action {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
  border: 1px solid transparent;
}
a.sk-review-action.approve {
  background: rgba(40,167,69,0.12);
  color: #5cb85c;
  border-color: rgba(40,167,69,0.25);
}
a.sk-review-action.approve:hover {
  background: rgba(40,167,69,0.22);
  color: #7dca7d;
}
a.sk-review-action.unapprove {
  background: rgba(247,147,26,0.12);
  color: #F7931A;
  border-color: rgba(247,147,26,0.25);
}
a.sk-review-action.unapprove:hover {
  background: rgba(247,147,26,0.22);
}
a.sk-review-action.spam {
  background: rgba(220,53,69,0.1);
  color: #e06c75;
  border-color: rgba(220,53,69,0.2);
}
a.sk-review-action.spam:hover {
  background: rgba(220,53,69,0.2);
}
a.sk-review-action.trash {
  background: rgba(255,255,255,0.05);
  color: #6b7a8d;
  border-color: rgba(255,255,255,0.08);
}
a.sk-review-action.trash:hover {
  background: rgba(255,255,255,0.1);
  color: #8a9bb0;
}
a.sk-review-action.delete {
  background: rgba(220,53,69,0.15);
  color: #e06c75;
  border-color: rgba(220,53,69,0.3);
}
a.sk-review-action.delete:hover {
  background: rgba(220,53,69,0.25);
}

/* Empty state */
.sk-reviews-empty {
  text-align: center;
  padding: 48px 24px;
  color: #5a6a7e;
}
.sk-reviews-empty i {
  font-size: 42px;
  margin-bottom: 12px;
  color: #2e3a4a;
  display: block;
}
.sk-reviews-empty p {
  margin: 0;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 600px) {
  .sk-review-card {
    flex-wrap: wrap;
  }
  .sk-review-card__meta {
    flex-direction: row;
    align-items: center;
  }
  .sk-review-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .sk-reviews-bulk-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Followers Page
   ========================================================================== */

.sk-followers-page-header {
  margin-bottom: 20px;
}
.sk-followers-page-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #e8ecf0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sk-followers-page-header h2 i {
  color: #e06c75;
}
.sk-followers-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  border-radius: 99px;
  background: rgba(224,108,117,0.15);
  border: 1px solid rgba(224,108,117,0.3);
  color: #e06c75;
  font-size: 15px;
  font-weight: 600;
}

/* Follower card grid */
.sk-followers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.sk-follower-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e2b3c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  transition: background .15s, border-color .15s;
}
.sk-follower-card:hover {
  background: #233044;
  border-color: rgba(255,255,255,0.12);
}
.sk-follower-card__avatar {
  flex-shrink: 0;
}
.sk-follower-card__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
  display: block;
}
.sk-follower-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sk-follower-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #e8ecf0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sk-follower-card__since {
  font-size: 14px;
  color: #5a6a7e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sk-follower-card__since i {
  font-size: 13px;
  color: #3a4a5c;
}

/* Empty state */
.sk-followers-empty {
  text-align: center;
  padding: 56px 24px;
  color: #5a6a7e;
}
.sk-followers-empty i {
  font-size: 46px;
  margin-bottom: 14px;
  color: #2e3a4a;
  display: block;
}
.sk-followers-empty p {
  margin: 0;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 480px) {
  .sk-followers-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Subscription Dashboard
   ========================================================================== */

/* Page header */
.sk-sub-page-header {
  margin-bottom: 20px;
}
.sk-sub-page-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #e8ecf0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sk-sub-page-header h2 i {
  color: #F7931A;
}

/* Tab filter pills */
.sk-sub-tab-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.sk-sub-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #8a9bb0;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.sk-sub-tab:hover {
  background: rgba(255,255,255,0.1);
  color: #e8ecf0;
  border-color: rgba(255,255,255,0.15);
  text-decoration: none;
}
.sk-sub-tab.active {
  background: rgba(247,147,26,0.15);
  border-color: rgba(247,147,26,0.45);
  color: #F7931A;
}
.sk-sub-tab i {
  font-size: 14px;
}
.sk-sub-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 600;
  color: #8a9bb0;
}
.sk-sub-tab.active .sk-sub-tab-count {
  background: rgba(247,147,26,0.25);
  color: #F7931A;
}

/* Active subscription info box — override module style.css #fff */
.sk-subscription-content .seller_subs_info,
.sk-sub-active-info {
  background: #1e2b3c !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 24px 28px !important;
  margin-bottom: 32px !important;
  color: #c4cdd8 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
  text-align: center;
}
.sk-sub-active-info p {
  margin: 0 0 8px !important;
  color: #c4cdd8 !important;
  font-size: 17px !important;
}
.sk-sub-active-info p:last-child { margin-bottom: 0 !important; }
.sk-sub-active-info span,
.sk-sub-active-info strong {
  color: #e8ecf0 !important;
  font-weight: 600;
}
.sk-sub-active-info a {
  color: #F7931A !important;
  text-decoration: none;
}
.sk-sub-active-info a:hover { text-decoration: underline; }
.sk-sub-active-info--warning {
  border-color: rgba(220,53,69,0.3);
  border-left-color: #e06c75;
}
.sk-sub-active-info--warning i { color: #e06c75; }
/* Info box inner layout */
.sk-sub-active-info__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-align: center;
}
.sk-sub-active-info__header i {
  font-size: 30px;
  color: #F7931A;
}
.sk-sub-active-info__header h3 {
  margin: 0 !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #e8ecf0 !important;
  letter-spacing: 0.3px;
}

/* Stats row */
.sk-sub-active-info__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sk-sub-active-info__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 24px;
  flex: 1;
  min-width: 120px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.sk-sub-active-info__stat:last-child {
  border-right: none;
}
.sk-sub-active-info__stat-label {
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #5a6a7e !important;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sk-sub-active-info__stat-label i {
  font-size: 12px;
  color: #F7931A;
}
.sk-sub-active-info__stat-value {
  font-size: 18px !important;
  font-weight: 700;
  color: #e8ecf0 !important;
}

/* Warning notice inside box */
.sk-sub-active-info__notice {
  text-align: center;
  font-size: 15px !important;
  padding: 8px 14px;
  border-radius: 6px;
  margin: 0 0 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.sk-sub-active-info__notice--warn {
  background: rgba(220,53,69,0.1);
  color: #e06c75 !important;
  border: 1px solid rgba(220,53,69,0.2);
}
.sk-sub-active-info__notice--warn i { color: #e06c75; }

/* Action area */
.sk-sub-active-info__action {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sk-sub-active-info__action form { margin: 0 !important; }
.sk-sub-cancel-btn {
  font-size: 15px !important;
  padding: 7px 18px !important;
  border-radius: 6px !important;
  cursor: pointer;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background .15s, transform .1s;
}
.sk-sub-cancel-btn.sk-btn-sm-danger {
  background: rgba(220,53,69,0.12) !important;
  border-color: rgba(220,53,69,0.3) !important;
  color: #e06c75 !important;
}
.sk-sub-cancel-btn.sk-btn-sm-danger:hover {
  background: rgba(220,53,69,0.22) !important;
  transform: translateY(-1px);
}
.sk-sub-cancel-btn.sk-btn-success {
  background: rgba(40,167,69,0.12) !important;
  border-color: rgba(40,167,69,0.3) !important;
  color: #5cb85c !important;
}
.sk-sub-cancel-btn.sk-btn-success:hover {
  background: rgba(40,167,69,0.22) !important;
  transform: translateY(-1px);
}

/* Pack listing grid — extra top margin for floating price circle */
.sk-subscription-content .pack_content_wrapper {
  margin-top: 60px !important;
}

/* Ensure pack content clears the absolute-positioned price circle above.
   Mirrors dps-custom-style which is only loaded on a hard page load. */
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_content {
  margin-top: 60px !important;
  width: 100% !important;
  text-align: center !important;
}
.sk-subscription-content .pack_content_wrapper .product_pack_item .buy_pack_button {
  margin: 10px 0 8px !important;
}
.sk-subscription-content .pack_content_wrapper .product_pack_item .pack_short_desc {
  width: 100% !important;
  text-align: center !important;
  margin-top: 8px !important;
}

/* Order card list */
.sk-sub-orders-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sk-sub-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #1e2b3c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 18px;
  transition: background .15s;
  flex-wrap: wrap;
}
.sk-sub-order-card:hover {
  background: #233044;
  border-color: rgba(255,255,255,0.11);
}
.sk-sub-order-card__left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sk-sub-order-card__number a {
  font-size: 17px;
  font-weight: 700;
  color: #e8ecf0;
  text-decoration: none;
}
.sk-sub-order-card__number a:hover {
  color: #F7931A;
}
.sk-sub-order-card__date {
  font-size: 14px;
  color: #5a6a7e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sk-sub-order-card__date i {
  font-size: 13px;
}
.sk-sub-order-card__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sk-sub-order-card__status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.sk-sub-order-card__total {
  font-size: 17px;
  font-weight: 700;
  color: #e8ecf0;
  white-space: nowrap;
}
.sk-sub-order-card__actions {
  display: flex;
  gap: 6px;
}
a.sk-sub-order-action {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(247,147,26,0.12);
  border: 1px solid rgba(247,147,26,0.25);
  color: #F7931A;
  text-decoration: none;
  font-weight: 500;
  transition: background .15s;
  white-space: nowrap;
}
a.sk-sub-order-action:hover {
  background: rgba(247,147,26,0.22);
  text-decoration: none;
}

/* Empty state */
.sk-sub-empty {
  text-align: center;
  padding: 56px 24px;
  color: #5a6a7e;
}
.sk-sub-empty i {
  font-size: 46px;
  margin-bottom: 14px;
  color: #2e3a4a;
  display: block;
}
.sk-sub-empty p {
  margin: 0;
  font-size: 17px;
}

/* Responsive */
@media (max-width: 600px) {
  .sk-sub-order-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .sk-sub-order-card__right {
    width: 100%;
  }
}

/* Hide SEO card visually — fields still submit, autofill JS still runs */
.sk-dashboard .sk-product-seo {
  display: none !important;
}

/* ==========================================================
 * PRODUCT GUARD — toast-based price/image validation
 * ========================================================== */

/* Base toast */
.dcg-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  padding: 16px 48px 16px 20px;
  background: #1e2b3c;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #F7931A;
  border-radius: 10px;
  color: #e8ecf0;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  z-index: 999999;
  animation: skGuardSlideIn 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  font-size: 16px;
}

/* Error variant */
.dcg-toast--error {
  border-left-color: #e06c75;
}
.dcg-toast--error i {
  color: #e06c75 !important;
}

/* Info variant */
.dcg-toast--info {
  border-left-color: #F7931A;
}
.dcg-toast--info i {
  color: #F7931A !important;
}

.dcg-toast i {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.dcg-toast span strong {
  color: #fff;
}
.dcg-toast .close-toast {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #5a6a7e;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  transition: color 0.15s;
}
.dcg-toast .close-toast:hover { color: #e8ecf0; }

@keyframes skGuardSlideIn {
  from { transform: translateX(420px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

/* ==========================================================
 * PRODUCT EDIT FORM — dark theme
 * ========================================================== */

/* ── Header ── */
.sk-dashboard .sk-pe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sk-dashboard .sk-pe-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sk-dashboard .sk-pe-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #e8ecf0;
}
.sk-dashboard .sk-pe-header h2 i {
  color: #F7931A;
  margin-right: 4px;
}
.sk-pe-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sk-pe-status--publish  { background: rgba(40,167,69,0.15);  color: #5cb85c; border: 1px solid rgba(40,167,69,0.3); }
.sk-pe-status--draft    { background: rgba(255,193,7,0.12);  color: #f0c040; border: 1px solid rgba(255,193,7,0.25); }
.sk-pe-status--pending  { background: rgba(247,147,26,0.15); color: #F7931A; border: 1px solid rgba(247,147,26,0.3); }
.sk-pe-status--auto-draft { background: rgba(255,255,255,0.06); color: #8a9bb0; border: 1px solid rgba(255,255,255,0.1); }
.sk-pe-hidden-badge {
  color: #8a9bb0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sk-dashboard .sk-pe-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Overall form container ── */
.sk-dashboard .product-edit-new-container {
  background: transparent;
}

/* ── Two-column top area — original float layout (65%/35%) is kept from style.css ── */
.sk-dashboard .sk-form-top-area {
  margin-bottom: 24px;
}

/* ── All inputs / selects within product edit form ── */
.sk-dashboard .product-edit-new-container input[type="text"],
.sk-dashboard .product-edit-new-container input[type="number"],
.sk-dashboard .product-edit-new-container input[type="email"],
.sk-dashboard .product-edit-new-container input[type="url"],
.sk-dashboard .product-edit-new-container input[type="date"],
.sk-dashboard .product-edit-new-container select,
.sk-dashboard .product-edit-new-container .sk-form-control,
.sk-dashboard .sk-edit-row .sk-form-control,
.sk-dashboard .sk-edit-row input[type="text"],
.sk-dashboard .sk-edit-row input[type="number"],
.sk-dashboard .sk-edit-row select {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #e8ecf0 !important;
  border-radius: 6px !important;
}
.sk-dashboard .product-edit-new-container input::placeholder,
.sk-dashboard .sk-edit-row input::placeholder {
  color: #5a6a7e !important;
}
.sk-dashboard .product-edit-new-container input[type="text"]:focus,
.sk-dashboard .product-edit-new-container input[type="number"]:focus,
.sk-dashboard .product-edit-new-container select:focus,
.sk-dashboard .sk-edit-row input:focus,
.sk-dashboard .sk-edit-row select:focus {
  border-color: rgba(247,147,26,0.4) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(247,147,26,0.1) !important;
}

/* ── Labels ── */
.sk-dashboard .product-edit-new-container label.form-label,
.sk-dashboard .product-edit-new-container .sk-pe-label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #c4cdd8 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sk-dashboard .product-edit-new-container .sk-pe-label i {
  color: #F7931A;
  margin-right: 5px;
}

/* ── Input group addon (currency symbol) ── */
.sk-dashboard .product-edit-new-container .sk-input-group-addon {
  background: rgba(247,147,26,0.12) !important;
  border: 1px solid rgba(247,147,26,0.25) !important;
  color: #F7931A !important;
  border-radius: 6px 0 0 6px !important;
  font-weight: 700;
}

/* ── Textareas (replacing wp_editor) ── */
.sk-pe-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  color: #e8ecf0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  padding: 12px 14px !important;
  resize: vertical;
  font-family: inherit;
  transition: border-color .15s;
  box-sizing: border-box;
}
.sk-pe-textarea:focus {
  border-color: rgba(247,147,26,0.4) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(247,147,26,0.08) !important;
}
.sk-pe-textarea::placeholder {
  color: #5a6a7e !important;
}
.sk-pe-textarea--tall { min-height: 200px; }

.sk-pe-field-block {
  margin-bottom: 20px;
}

/* ── Featured image upload area ── */
.sk-dashboard .sk-feat-image-upload {
  background: rgba(255,255,255,0.04) !important;
  border: 2px dashed rgba(255,255,255,0.12) !important;
  border-radius: 10px !important;
  transition: border-color .2s;
}
.sk-dashboard .sk-feat-image-upload:hover {
  border-color: rgba(247,147,26,0.35) !important;
}
.sk-dashboard .sk-feat-image-upload .instruction-inside {
  color: #8a9bb0 !important;
}
.sk-dashboard .sk-feat-image-upload .instruction-inside i {
  color: #F7931A;
  font-size: 34px;
  margin-bottom: 8px;
  display: block;
}
.sk-dashboard .sk-feat-image-upload .instruction-inside a {
  color: #F7931A !important;
  text-decoration: underline;
}

/* ── Gallery ── */
.sk-dashboard .sk-product-gallery .add-image a {
  color: #F7931A !important;
}
.sk-dashboard #product_images_container ul.product_images li.image {
  background: rgba(255,255,255,0.06) !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* ── sk-edit-row sections (P2P, Sats, sk-pro panels) ── */
.sk-dashboard .sk-edit-row {
  background: #1e2b3c !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 10px !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
}
.sk-dashboard .sk-edit-row .sk-section-heading {
  background: rgba(255,255,255,0.03) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  padding: 14px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.sk-dashboard .sk-edit-row .sk-section-heading h2 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #e8ecf0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sk-dashboard .sk-edit-row .sk-section-heading h2 i {
  color: #F7931A !important;
}
.sk-dashboard .sk-edit-row .sk-section-heading p {
  font-size: 14px !important;
  color: #5a6a7e !important;
  margin: 0 !important;
}
.sk-dashboard .sk-edit-row .sk-section-heading .sk-section-toggle {
  color: #5a6a7e !important;
}
.sk-dashboard .sk-edit-row .sk-section-heading .sk-section-toggle:hover {
  color: #F7931A !important;
}
.sk-dashboard .sk-edit-row .sk-section-content {
  padding: 18px !important;
  background: transparent !important;
}
.sk-dashboard .sk-edit-row .sk-section-content label,
.sk-dashboard .sk-edit-row .sk-section-content .form-label {
  color: #c4cdd8 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  display: block;
  margin-bottom: 6px;
}
.sk-dashboard .sk-edit-row .sk-section-content small {
  color: #5a6a7e !important;
  display: block;
  margin-top: 6px;
  font-size: 14px;
}
.sk-dashboard .sk-edit-row .sk-section-content p {
  color: #c4cdd8 !important;
}

/* Sats result text */
.sk-dashboard #sats_result {
  color: #F7931A !important;
  font-weight: 700;
  font-size: 18px;
}

/* Sats convert button */
.sk-dashboard #sats-converter-box .sk-section-content .button,
.sk-dashboard #sats-converter-box .button-primary {
  background: #F7931A !important;
  border-color: #F7931A !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 6px 14px !important;
  font-size: 15px !important;
  cursor: pointer;
}

/* ── Alert/message boxes ── */
.sk-dashboard .product-edit-new-container .sk-alert-danger {
  background: rgba(220,53,69,0.12) !important;
  border: 1px solid rgba(220,53,69,0.3) !important;
  color: #e06c75 !important;
  border-radius: 8px !important;
}
.sk-dashboard .product-edit-new-container .sk-message {
  background: rgba(40,167,69,0.1) !important;
  border: 1px solid rgba(40,167,69,0.25) !important;
  color: #5cb85c !important;
  border-radius: 8px !important;
  padding: 12px 16px 12px 50px !important;
  margin-bottom: 20px;
}
.sk-dashboard .product-edit-new-container .sk-message a {
  color: #F7931A !important;
}

/* ── Submit bar ── */
.sk-pe-submit-bar {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.sk-pe-save-btn {
  font-size: 17px !important;
  padding: 10px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

/* ── Price section ── */
.sk-dashboard .product-edit-new-container .regular-price,
.sk-dashboard .product-edit-new-container .sale-price {
  flex: 1;
}
.sk-dashboard .product-edit-new-container .vendor-earning {
  color: #5a6a7e !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.sk-dashboard .product-edit-new-container .vendor-earning .vendor-price {
  color: #5cb85c !important;
}
.sk-dashboard .product-edit-new-container .sale_schedule,
.sk-dashboard .product-edit-new-container .cancel_sale_schedule {
  color: #F7931A !important;
  font-size: 14px;
  text-decoration: none;
}
.sk-dashboard .product-edit-new-container .sale_schedule:hover,
.sk-dashboard .product-edit-new-container .cancel_sale_schedule:hover {
  text-decoration: underline;
}

/* ── Select2 inside product form ── */
.sk-dashboard .product-edit-new-container .select2-container--default .select2-selection--multiple,
.sk-dashboard .product-edit-new-container .select2-container--default .select2-selection--single {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 6px !important;
}
.sk-dashboard .product-edit-new-container .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: rgba(247,147,26,0.15) !important;
  border: 1px solid rgba(247,147,26,0.3) !important;
  color: #F7931A !important;
  border-radius: 4px !important;
}
.sk-dashboard .product-edit-new-container .select2-container--default .select2-selection__rendered {
  color: #e8ecf0 !important;
}
