/* cvety-by.online — брендинг поверх Ekomart */
:root {
  --color-primary: #e11d48;
  --color-primary-2: #be123c;
}

.rts-btn.btn-primary {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.rts-btn.btn-primary:hover {
  background: var(--color-primary-2) !important;
}

.bg_primary {
  background: var(--color-primary) !important;
}

.text-brand,
a.current {
  color: var(--color-primary);
}

.banner-one-inner-content .title {
  max-width: 640px;
}

.logo-area .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.2;
}

.logo-area .logo-text small {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
}

.ekomart_dashboard .logo.logo-text {
  display: block;
  padding: 16px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1.1rem;
}

.ekomart_dashboard .logo.logo-text small {
  display: block;
  font-size: 0.8125rem;
  color: #666;
  font-weight: 500;
}


.panel-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
}

.panel-table {
  width: 100%;
  border-collapse: collapse;
}

.panel-table th,
.panel-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 1rem;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.alert-success {
  background: #f0fdf4;
  color: #15803d;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
}

/* Logo — единый блок: иконка + ЦВЕТЫ / by.online */
.cvety-logo-wrap {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  min-width: auto !important;
  text-decoration: none !important;
}

.cvety-logo-img {
  flex-shrink: 0;
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.cvety-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.cvety-logo-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
}

.cvety-logo-domain {
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.05em;
}

.cvety-logo-wrap--dashboard {
  padding: 16px 16px 12px;
  width: 100%;
  box-sizing: border-box;
}

.cvety-logo-wrap--dashboard .cvety-logo-brand {
  font-size: 1.25rem;
}

.cvety-logo-wrap--dashboard .cvety-logo-domain {
  font-size: 0.9375rem;
}

.cvety-logo-wrap--dashboard .cvety-logo-img {
  height: 46px;
  width: 46px;
}

/* Cart badge */
.cvety-cart-link {
  position: relative;
  text-decoration: none;
}

.cvety-cart-link .number {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
}

.cart-bump .number {
  animation: cart-pop 0.5s ease;
}

@keyframes cart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Shop / product images */
.cvety-shop-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff1f2;
}

.cvety-shop-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile header — Ekomart pattern */
.cvety-mobile-header-bar {
  display: none;
}

.cvety-desktop-header {
  display: block;
}

.cvety-sidebar-overlay,
.cvety-dashboard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border: 0;
  z-index: 998;
  cursor: pointer;
}

.cvety-cart-link .number {
  position: static !important;
  left: auto !important;
}

@media (max-width: 991px) {
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .cvety-hide-mobile {
    display: none !important;
  }

  .cvety-desktop-header {
    display: none !important;
  }

  .cvety-mobile-header-bar {
    display: block;
    padding: 8px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .cvety-mobile-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  body.shop-main-h #main-content {
    padding-top: 92px;
  }

  .cvety-mobile-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
  }

  .cvety-mobile-header-row .cvety-logo-wrap {
    flex-shrink: 0;
  }

  .cvety-mobile-city-select {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 130px;
    min-height: 36px;
    padding: 6px 28px 6px 10px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #fff;
  }

  .cvety-mobile-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .cvety-mobile-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1f1f25;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
  }

  .cvety-mobile-icon-btn i {
    font-size: 20px;
    line-height: 1;
  }

  .cvety-mobile-header-actions .cvety-cart-dropdown {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .cvety-mobile-header-actions .cvety-cart-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    text-decoration: none;
    color: #1f1f25;
  }

  .cvety-mobile-header-actions .cvety-cart-trigger i {
    font-size: 20px;
    line-height: 1;
    display: block;
  }

  .cvety-mobile-header-actions .cvety-cart-trigger .number {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    border-radius: 999px;
    background: var(--color-primary, #e11d48);
    color: #fff;
  }

  .cvety-header .nav-and-btn-wrapper {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
  }

  .cvety-header .logo-search-category-wrapper {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cvety-scroll-nav {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .cvety-scroll-nav .parent {
    flex: 0 0 auto;
  }

  .cvety-scroll-nav .nav-link {
    white-space: nowrap;
    font-size: 1rem;
    padding: 10px 14px;
  }

  .banner-one-inner-content .title {
    font-size: 1.75rem !important;
  }

  .panel-card {
    padding: 16px;
  }

  .single-footer-wized {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer-main-content-wrapper .row {
    row-gap: 8px;
  }
}

@media (min-width: 992px) {
  .cvety-mobile-header-bar {
    display: none !important;
  }

  .cvety-desktop-header {
    display: block !important;
  }

  .cvety-header .nav-and-btn-wrapper {
    display: flex !important;
  }
}

/* Dashboard mobile sidebar */
@media (max-width: 991px) {
  .ekomart_dashboard .sidebar_left {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1000;
  }

  .ekomart_dashboard.sidebar-open .sidebar_left {
    transform: translateX(0);
  }

  .ekomart_dashboard .header-one {
    position: sticky;
    top: 0;
    z-index: 90;
  }

  .dashboard-content-area {
    padding: 16px !important;
  }
}

/* User account layout */
.cvety-account-layout .registration-wrapper-1 {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #eee;
}

.cvety-account-nav {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
}

.cvety-account-nav a {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.cvety-account-nav a.active,
.cvety-account-nav a:hover {
  background: #fff1f2;
  color: var(--color-primary);
}

/* Shop cards — vendor grid style */
.cvety-shop-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.cvety-shop-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Order list cards */
.cvety-order-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s;
}

.cvety-order-card:hover {
  border-color: var(--color-primary);
}


@media (max-width: 575px) {
  .cvety-logo-brand {
    font-size: 1.2rem;
  }

  .cvety-logo-domain {
    font-size: 0.9rem;
  }

  .cvety-logo-img {
    height: 44px;
    width: 44px;
  }

  .cvety-logo-wrap {
    gap: 10px;
  }

  .single-shopping-card-one .title {
    font-size: 15px !important;
  }
}

.cvety-slot-option {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
}

.cvety-slot-option:has(input:checked) {
  border-color: var(--color-primary);
  background: #fff1f2;
}

.cvety-shop-cart-block {
  margin-bottom: 2rem;
}

.cvety-cart-shop-divider {
  border-color: #eee !important;
}

.cvety-photo-approve {
  border: 2px solid var(--color-primary, #629D23);
}

.cvety-cart-empty {
  padding: 48px 24px;
}

.cvety-cart-empty-icon {
  font-size: 48px;
  color: #fda4af;
}

.cart-total-area-start-right {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
  position: sticky;
  top: 100px;
}

.single-cart-area-list.main .close {
  cursor: pointer;
  color: #999;
}

.single-cart-area-list.main .close:hover {
  color: var(--color-primary);
}

.single-cart-area-list.main .thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff1f2;
}

.single-cart-area-list.main .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-cupon-code-cart-area {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .single-cart-area-list.head {
    display: none;
  }

  .single-cart-area-list.main {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px !important;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .single-cart-area-list.main .product-main-cart {
    width: 100%;
  }

  .single-cart-area-list.main .price,
  .single-cart-area-list.main .quantity,
  .single-cart-area-list.main .subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }

  .single-cart-area-list.main .price::before {
    content: "Цена";
    color: #666;
    font-size: 1rem;
  }

  .single-cart-area-list.main .quantity::before {
    content: "Количество";
    color: #666;
    font-size: 1rem;
  }

  .single-cart-area-list.main .subtotal::before {
    content: "Сумма";
    color: #666;
    font-size: 1rem;
    font-weight: 600;
  }

  .cart-total-area-start-right {
    position: static;
    margin-top: 8px;
  }
}

/* ——— UI/UX system & content blocks ——— */
:root {
  --cvety-space-xs: 0.5rem;
  --cvety-space-sm: 0.75rem;
  --cvety-space-md: 1rem;
  --cvety-space-lg: 1.5rem;
  --cvety-space-xl: 2rem;
  --cvety-radius: 12px;
  --cvety-text: #1f2937;
  --cvety-muted: #6b7280;
}

.cvety-page-hero {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: var(--cvety-space-xl) 0;
}

.cvety-page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--cvety-text);
  margin: 0 0 var(--cvety-space-sm);
  line-height: 1.15;
}

.cvety-page-hero__intro {
  font-size: 1.0625rem;
  color: var(--cvety-muted);
  max-width: 720px;
  margin: 0 0 var(--cvety-space-md);
  line-height: 1.55;
}

.cvety-page-hero__actions {
  margin-top: var(--cvety-space-md);
}

.cvety-section-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--cvety-text);
  margin: 0 0 var(--cvety-space-md);
}

.cvety-content-section {
  padding: var(--cvety-space-xl) 0;
  background: #fff;
}

.cvety-prose {
  max-width: none;
  width: 100%;
  color: var(--cvety-text);
  line-height: 1.65;
}

.cvety-prose h2 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.75rem;
}

.cvety-prose ol,
.cvety-prose ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.cvety-faq-section {
  padding: var(--cvety-space-xl) 0 var(--cvety-space-xl);
  background: #fafafa;
}

.cvety-faq-list {
  margin: 0;
  max-width: none;
  width: 100%;
}

.cvety-faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--cvety-radius);
  padding: var(--cvety-space-md) var(--cvety-space-lg);
  margin-bottom: var(--cvety-space-sm);
}

.cvety-faq-q {
  font-weight: 700;
  font-size: clamp(1.125rem, 2.2vw, 1.3rem);
  margin: 0 0 0.35rem;
  color: var(--cvety-text);
}

.cvety-faq-a {
  margin: 0;
  color: var(--cvety-muted);
  line-height: 1.65;
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
}

.cvety-btn {
  min-height: 44px;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.cvety-btn--lg {
  min-height: 48px;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
}

.cvety-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cvety-hero-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem) !important;
  line-height: 1.12 !important;
}

.cvety-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.cvety-home-banner .banner-one-inner-content .pre {
  margin-bottom: 0.75rem;
}

.cvety-category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--cvety-radius);
  padding: 1rem;
  text-decoration: none !important;
  color: var(--cvety-text) !important;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cvety-category-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}

.cvety-collection-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-decoration: none !important;
  background: #fff;
}

.cvety-collection-pill:hover {
  background: #fff1f2;
}

.cvety-collection-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--cvety-radius);
  padding: 1.25rem;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cvety-collection-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cvety-collection-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.cvety-collection-card__meta {
  color: var(--cvety-muted);
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}

.cvety-collection-card__cta {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.cvety-filter-panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--cvety-radius);
  padding: 1.25rem;
  position: sticky;
  top: 100px;
}

.cvety-filter-panel__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.cvety-input,
.cvety-filter-panel .form-control,
.cvety-filter-panel .form-select {
  min-height: 44px;
  border-radius: 8px;
}

.cvety-empty-state {
  color: var(--cvety-muted);
  padding: 2rem 0;
  text-align: center;
}

.cvety-text-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.cvety-text-link:hover {
  text-decoration: underline;
}

.cvety-city-badge {
  display: inline-block;
  background: #fff1f2;
  color: var(--color-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.cvety-shop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cvety-shop-list-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--cvety-radius);
  padding: 1rem;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s;
}

.cvety-shop-list-item:hover {
  border-color: var(--color-primary);
}

.cvety-shop-list-item__img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cvety-shop-list-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.cvety-shop-list-item__meta {
  color: var(--cvety-muted);
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

.cvety-shop-list-item__cta {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.cvety-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.cvety-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cvety-breadcrumb a {
  text-decoration: none;
}

.cvety-breadcrumb [aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .cvety-filter-panel {
    position: static;
  }

  .cvety-shop-list-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cvety-shop-list-item__img {
    width: 100%;
    height: 160px;
  }
}

/* Verified badge & lists */
.cvety-badge {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  line-height: 1.4;
}

.cvety-badge--verified {
  background: rgba(34, 139, 87, 0.12);
  color: #1a7a4a;
}

.cvety-shop-meta {
  font-size: 0.95rem;
  color: var(--color-body, #666);
}

.cvety-product-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cvety-checklist {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}

  .cvety-checklist li + li {
  margin-top: 0.35rem;
}

/* Desktop-only horizontal nav (mobile uses burger) */
@media (max-width: 991px) {
  .cvety-desktop-only-nav {
    display: none !important;
  }
}

/* Toast notification */
.cvety-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #1a7a4a;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  max-width: min(92vw, 420px);
}

.cvety-toast i {
  font-size: 1.1rem;
}

.cvety-stock-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #c0392b;
}

.cvety-cart-line-meta {
  font-size: 0.85rem;
  color: var(--color-body, #777);
}

.cvety-cart-header,
.cvety-checkout-form {
  max-width: 100%;
}

.cvety-checkout-page .input-wrapper input,
.cvety-checkout-page .input-wrapper textarea,
.cvety-checkout-page .cvety-address-suggest input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0.55rem 0.875rem;
  font-size: 16px;
  line-height: 1.4;
  color: var(--cvety-text, #1f1f25);
  background-color: #fff;
  border: 1px solid #c8cdd3;
  border-radius: 10px;
  box-shadow: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cvety-checkout-page .input-wrapper textarea {
  min-height: 96px;
  resize: vertical;
}

.cvety-checkout-page .input-wrapper input:focus,
.cvety-checkout-page .input-wrapper textarea:focus,
.cvety-checkout-page .cvety-address-suggest input:focus {
  border-color: var(--color-primary, #629d23);
  box-shadow: 0 0 0 3px rgba(98, 157, 35, 0.15);
  outline: none;
}

.cvety-checkout-page .input-wrapper.has-error input,
.cvety-checkout-page .input-wrapper.has-error textarea,
.cvety-checkout-page .cvety-address-suggest .input-wrapper.has-error input {
  border-color: #dc2626;
}

.cvety-checkout-page .input-wrapper.has-error input:focus,
.cvety-checkout-page .input-wrapper.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.cvety-checkout-page .input-wrapper {
  margin-bottom: 0;
}

.cvety-checkout-page .input-wrapper label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c3c28;
}

.cvety-price-lg {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
}

.cvety-product-hero-img {
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
}

.cvety-slot-option,
.cvety-addon-option,
.cvety-checkbox-row {
  cursor: pointer;
}

.cvety-checkout-hint {
  font-size: 0.9rem;
  color: var(--color-body, #666);
}

.cvety-field-error {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #c0392b;
}

.input-wrapper.has-error input,
.input-wrapper.has-error textarea {
  border-color: #c0392b;
}

.cvety-checkout-notice {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  font-size: 0.9rem;
  color: #6b5a2a;
}

.cvety-checkout-blocked-reason {
  font-size: 0.9rem;
  color: #c0392b;
}

/* —— Checkout: WB / Amazon style —— */
.cvety-checkout-page__header {
  margin: 1.25rem 0 1.5rem;
}

.cvety-checkout-progress {
  margin-bottom: 0.5rem;
}

.cvety-checkout-progress__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.cvety-checkout-progress__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #999;
}

.cvety-checkout-progress__item--done {
  color: var(--color-primary, #629d23);
}

.cvety-checkout-progress__item--current {
  color: #1f1f25;
  font-weight: 600;
}

.cvety-checkout-progress__marker {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: #f0f0f0;
  color: #888;
  flex-shrink: 0;
}

.cvety-checkout-progress__item--done .cvety-checkout-progress__marker {
  background: var(--color-primary, #629d23);
  color: #fff;
}

.cvety-checkout-progress__item--current .cvety-checkout-progress__marker {
  background: #1f1f25;
  color: #fff;
}

.cvety-checkout-progress__label a {
  color: inherit;
  text-decoration: none;
}

.cvety-checkout-progress__label a:hover {
  color: var(--color-primary, #629d23);
}

.cvety-checkout-progress__line {
  display: none;
}

@media (min-width: 576px) {
  .cvety-checkout-progress__line {
    display: block;
    width: 2.5rem;
    height: 2px;
    background: #e5e5e5;
    margin-left: 0.25rem;
  }

  .cvety-checkout-progress__item--done .cvety-checkout-progress__line {
    background: var(--color-primary, #629d23);
  }
}

.cvety-checkout-panel {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
}

.cvety-checkout-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.25rem 1.35rem 1.35rem;
  margin-bottom: 1rem;
}

.cvety-checkout-section__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.cvety-checkout-section__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #1f1f25;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cvety-checkout-section__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.cvety-checkout-section__sub {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  color: #888;
}

.cvety-checkout-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cvety-checkout-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.cvety-checkout-inline-status {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #666;
}

.cvety-checkout-slots__label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.cvety-checkout-slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.5rem;
}

.cvety-checkout-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.5rem 0.65rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}

.cvety-checkout-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cvety-checkout-slot:hover {
  border-color: #ccc;
}

.cvety-checkout-slot.is-selected {
  border-color: var(--color-primary, #629d23);
  background: #f6faf3;
}

.cvety-checkout-slot.has-error:not(.is-selected) {
  border-color: #f5c6c6;
}

.cvety-checkout-slot__time {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.cvety-checkout-slot__meta {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.15rem;
}

.cvety-checkout-addon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 0.9rem;
}

.cvety-checkout-addon:last-child {
  border-bottom: 0;
}

.cvety-checkout-addon__price {
  margin-left: auto;
  color: #666;
  white-space: nowrap;
}

.cvety-checkout-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cvety-checkout-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0;
}

.cvety-checkout-toggle input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cvety-checkout-summary {
  position: sticky;
  top: 1.25rem;
}

.cvety-checkout-summary__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cvety-checkout-summary__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.cvety-checkout-summary__shop {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #888;
}

.cvety-checkout-summary__items {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cvety-checkout-summary__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.cvety-checkout-summary__item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #f8f8f8;
}

.cvety-checkout-summary__item-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.cvety-checkout-summary__item-meta {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.1rem;
}

.cvety-checkout-summary__item-total {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.cvety-checkout-summary__more {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: #888;
}

.cvety-checkout-summary__empty {
  margin: 0 0 1rem;
  color: #888;
  font-size: 0.9rem;
}

.cvety-checkout-summary__totals {
  margin: 0 0 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eee;
}

.cvety-checkout-summary__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.cvety-checkout-summary__totals dt {
  margin: 0;
  font-weight: 400;
  color: #666;
}

.cvety-checkout-summary__totals dd {
  margin: 0;
  font-weight: 500;
}

.cvety-checkout-summary__grand {
  margin-top: 0.35rem;
  padding-top: 0.65rem !important;
  border-top: 1px solid #eee;
  font-size: 1rem !important;
}

.cvety-checkout-summary__grand dt {
  font-weight: 700 !important;
  color: #1f1f25 !important;
}

.cvety-checkout-summary__grand dd {
  font-weight: 700 !important;
  font-size: 1.15rem;
}

.cvety-checkout-summary__secure {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

.cvety-checkout-summary__secure i {
  margin-right: 0.35rem;
  color: var(--color-primary, #629d23);
}

.cvety-checkout-mobile-pay {
  margin-top: 0.5rem;
}

.cvety-checkout-mobile-pay .cvety-checkout-summary {
  position: static;
}

@media (max-width: 991px) {
  .cvety-checkout-section {
    padding: 1rem;
  }
}

.cvety-address-suggest {
  position: relative;
}

.cvety-address-suggest-list {
  position: absolute;
  z-index: 20;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-height: 14rem;
  overflow: auto;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cvety-address-suggest-item {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cvety-address-suggest-item:hover {
  background: #f8f8f8;
}

.cvety-address-suggest-item__title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.cvety-address-suggest-item__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #888;
}

.cvety-guide-card h2 a {
  text-decoration: none;
  color: inherit;
}

.cvety-guide-card h2 a:hover {
  color: var(--color-primary);
}

/* —— UI refresh: категории, подборки, корзина, FAQ —— */
.cvety-section-title--spaced {
  margin-bottom: 1.25rem !important;
}

.cvety-section-title--inline {
  margin-bottom: 0 !important;
}

.cvety-title-area-between {
  margin-bottom: 1.5rem;
}

.cvety-section-intro {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--cvety-muted, #666);
  max-width: 760px;
  margin-bottom: 1rem;
}

.cvety-category-strip {
  padding: 2rem 0 2.5rem;
}

.cvety-category-strip .single-category-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--cvety-text, #1f1f25);
  gap: 0.65rem;
}

.cvety-category-strip .single-category-one img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  border: 1px solid #eee;
}

.cvety-category-strip .single-category-one p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.cvety-collection-feature .content-area .title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem) !important;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
}

.cvety-collection-feature__badge {
  font-size: 0.8125rem !important;
  padding: 0.35rem 0.75rem !important;
  pointer-events: none;
}

.cvety-collection-feature--link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cvety-collection-feature--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cvety-collection-feature--link .title {
  color: inherit;
}

.cvety-collection-feature--link .shop-now-goshop-btn {
  pointer-events: none;
}

.cvety-collection-feature .shop-now-goshop-btn .text {
  font-size: 1rem;
  font-weight: 600;
}

.cvety-product-add-btn .btn-text {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.cvety-product-add-btn {
  min-height: 48px !important;
}

.cvety-input--bordered {
  border: 1px solid #d1d5db !important;
  border-radius: 8px;
}

.cvety-input--bordered:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.cvety-footer-brand .cvety-footer-logo {
  margin-bottom: 1rem;
}

.cvety-footer-brand .cvety-logo-text {
  color: var(--cvety-text, #1f1f25);
}

.cvety-news-excerpt {
  font-size: 0.9375rem;
  color: var(--cvety-muted, #666);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.5;
}

.cvety-news-date--article {
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  color: var(--cvety-muted, #888);
  font-size: 0.9375rem;
}

.shop-grid-sidebar-area .single-shopping-card-one,
.rts-grocery-feature-area .single-shopping-card-one {
  background: #f5f6f7 !important;
}

.rts-grocery-feature-area .product-area-wrapper-shopgrid-list {
  margin-left: 0;
}

.rts-caregory-area-one .single-category-one {
  text-decoration: none;
  color: inherit;
}

.rts-caregory-area-one .single-category-one img {
  display: block;
  margin: 0 auto;
}

.rts-caregory-area-one .single-category-one p {
  margin-bottom: 0;
  text-align: center;
}

.rts-grocery-feature-area .single-shopping-card-one .thumbnail-preview {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: block;
}

.rts-grocery-feature-area .single-shopping-card-one .thumbnail-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.shop-grid-sidebar-area .single-shopping-card-one .thumbnail-preview {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: block;
}

.shop-grid-sidebar-area .single-shopping-card-one .thumbnail-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Фильтры каталога — не ломать стилями checkout/forms */
body.shop-main-h .shop-grid-sidebar-area .price-input-area input[type="text"],
body.shop-main-h .shop-grid-sidebar-area .price-input-area input[type="number"] {
  min-height: 35px;
  height: 35px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-shadow: none;
}

body.shop-main-h .shop-grid-sidebar-area .price-input-area input[type="range"].range {
  min-height: auto;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
}

body.shop-main-h .filter-select-area .single-select select.cvety-no-nice-select {
  min-height: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
}

body.shop-main-h .shop-grid-sidebar-area .single-category input[type="checkbox"] {
  min-height: auto;
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
}

body.shop-grid-sidebar .filter-select-area .nav-tabs {
  border: none;
}

body.shop-grid-sidebar .filter-select-area .nav-tabs .nav-link {
  padding: 0;
  border: none;
  background: transparent;
}

body.shop-grid-sidebar .product-area-wrapper-shopgrid-list.with-list .single-shopping-card-one .thumbnail-preview {
  flex: 0 0 180px;
  max-width: 180px;
}

body.shop-grid-sidebar .product-area-wrapper-shopgrid-list.with-list .single-shopping-card-one .thumbnail-preview img {
  aspect-ratio: 1;
}

@media (max-width: 1200px) {
  .rts-product-details-section.product-details-popup-section .details-product-area .product-detail-contents {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .rts-product-details-section .product-detail-contents {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}

/* —— Ekomart shop-grid-sidebar —— */
.shop-grid-sidebar-area .pr--70 {
  padding-right: 0 !important;
}

@media (min-width: 1200px) {
  .shop-grid-sidebar-area .pr--70 {
    padding-right: 70px !important;
  }

  .shop-grid-sidebar-area .col-xl-9 .filter-select-area {
    margin-left: -30px;
  }
}

@media (max-width: 1199px) {
  .shop-grid-sidebar-area .col-xl-9 .filter-select-area {
    margin-left: 0;
  }
}

.shop-grid-sidebar-area .sidebar-filter-main .single-filter-box {
  margin-bottom: 1.25rem;
}

.shop-grid-sidebar-area .price-input-area .half-input-wrapper input {
  width: 100%;
}

.cvety-text-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary, #629d23);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.cvety-vendor-banner {
  background-size: cover !important;
  background-position: center !important;
}

.cvety-vendor-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(44, 60, 40, 0.75), rgba(44, 60, 40, 0.35));
}

.cvety-vendor-banner .content-area {
  position: relative;
  z-index: 1;
}

.vendor-banner-left .title span.open {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 2px 8px;
  font-size: 0.875rem;
  background: var(--color-primary);
  border-radius: 2px;
}

.cvety-product-thumb-area .product-thumb img {
  border-radius: 8px;
  object-fit: cover;
}

.cvety-product-zoom {
  background-repeat: no-repeat;
  background-size: 200%;
  background-position: center;
}

.product-details-popup-wrapper.in-shopdetails .cvety-product-zoom {
  width: 100%;
  max-width: 450px;
}

/* Header mini-cart dropdown */
.cvety-cart-dropdown {
  position: relative;
}

.cvety-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.cvety-cart-trigger .number {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  position: static !important;
}

.cvety-header-cart-empty,
.cvety-header-cart-more,
.cvety-header-cart-hint {
  margin: 0;
  font-size: 0.9375rem;
  color: #666;
}

.cvety-header-cart-empty {
  padding: 12px 0;
}

.cvety-header-cart-more {
  padding-bottom: 8px;
}

.cvety-header-cart-hint {
  margin-top: 8px;
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .cvety-cart-dropdown .category-sub-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
  }

  .cvety-cart-dropdown--open .category-sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.rts-product-details-section.product-details-popup-section {
  padding-top: 0;
}

/* shop-details.html — сброс popup-модалки темы для inline-страницы товара */
.cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails {
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  transform: none !important;
  height: auto !important;
  width: 100% !important;
  pointer-events: auto !important;
  display: block !important;
}

.cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails .product-details-popup {
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

.cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails .details-product-area {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

/* Tailwind .contents { display:contents } ломает shop-details.html */
.rts-chop-details-area .details-product-area > .contents,
.rts-product-details-section .details-product-area > .contents,
.cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails .details-product-area .product-detail-contents,
.rts-chop-details-area .details-product-area > .product-detail-contents,
.rts-product-details-section .details-product-area > .product-detail-contents {
  display: block !important;
  flex: 1 1 0%;
  min-width: 0;
  max-height: none !important;
  overflow: visible !important;
}

.cvety-product-detail-page .product-discription-tab-shop .nav-tabs .nav-link.active {
  color: var(--color-primary, #629d23);
  border-bottom-color: var(--color-primary, #629d23);
}

.cvety-product-detail-page .share-option-shop-details a.single-share-option {
  text-decoration: none;
  color: inherit;
}

.cvety-product-detail-page .share-option-shop-details a.single-share-option:hover {
  color: var(--color-primary, #629d23);
}

@media (max-width: 768px) {
  .cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails .product-details-popup {
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
  }

  .cvety-product-detail-page .product-details-popup-wrapper.in-shopdetails .product-details-popup .product-thumb {
    width: 100% !important;
  }
}

.cvety-product-tabs .nav-link {
  cursor: pointer;
  border: none;
  background: transparent;
}

.product-filter-area-vendors-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.product-filter-area-vendors-details .search-area {
  flex: 1;
  min-width: 200px;
}

.product-filter-area-vendors-details .single-select select {
  min-width: 160px;
}

/* Unified storefront form controls */
body.shop-main-h .form-control,
body.shop-main-h .form-select,
body.shop-main-h input[type="text"],
body.shop-main-h input[type="email"],
body.shop-main-h input[type="tel"],
body.shop-main-h input[type="password"],
body.shop-main-h input[type="search"],
body.shop-main-h input[type="number"],
body.shop-main-h textarea,
body.shop-main-h select:not(.cvety-no-nice-select) {
  min-height: 44px;
  padding: 0.5rem 0.875rem;
  font-size: 16px;
  line-height: 1.4;
  color: var(--cvety-text, #1f1f25);
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.shop-main-h textarea {
  min-height: 120px;
  resize: vertical;
}

body.shop-main-h .form-control:focus,
body.shop-main-h .form-select:focus,
body.shop-main-h input:focus,
body.shop-main-h textarea:focus,
body.shop-main-h select:focus {
  border-color: var(--color-primary, #e11d48);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
  outline: none;
}

body.shop-main-h .form-select,
body.shop-main-h select:not(.cvety-no-nice-select) {
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
}

body.shop-main-h .cvety-city-select,
body.shop-main-h .cvety-mobile-city-select,
body.shop-main-h .cvety-no-nice-select {
  appearance: auto;
  background-image: none;
}

body.shop-main-h .product-filter-area-vendors-details .single-select select,
body.shop-main-h .search-header input[type="search"] {
  min-height: 44px;
}

body.shop-main-h .search-input-area-menu input[type="text"] {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

/* Category strip — Ekomart spacing */
.cvety-category-strip {
  padding: 2rem 0 2.5rem;
}

.cvety-category-strip .category-area-main-wrapper-one {
  margin-top: 1rem;
}

.cvety-category-strip .single-category-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  gap: 0.75rem;
}

.cvety-category-strip .single-category-one img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.cvety-category-strip .single-category-one p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.3;
}

/* Footer — Ekomart grid */
.rts-footer-area .footer-main-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.rts-footer-area .single-footer-wized {
  flex: 1 1 160px;
  min-width: 0;
  max-width: 240px;
}

@media (max-width: 767px) {
  .rts-footer-area .single-footer-wized {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Hide custom back-to-top — theme uses .progress-wrap */
.cvety-back-to-top {
  display: none !important;
}


/* Desktop sticky: logo + search + cart + nav stay visible */
@media (min-width: 992px) {
  .cvety-desktop-sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
}

/* Back to top */
.cvety-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cvety-back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cvety-back-to-top:hover {
  background: var(--color-primary-2);
}

/* Header cart dropdown: hover bridge + readable text */
.cvety-cart-dropdown .cvety-header-cart-panel {
  margin-top: 0;
  padding-top: 12px;
}

.cvety-cart-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.cvety-cart-dropdown .category-sub-menu .details h5,
.cvety-cart-dropdown .category-sub-menu .details h5 a,
.cvety-cart-dropdown .category-sub-menu .details .number,
.cvety-cart-dropdown .category-sub-menu .details .number span,
.cvety-cart-dropdown .category-sub-menu .shopping-cart-number {
  color: #1f1f25 !important;
}

.cvety-cart-dropdown .category-sub-menu .details h5 a:hover {
  color: var(--color-primary) !important;
}

.cvety-header .category-hover-header .category-sub-menu .menu-item span {
  color: #1f1f25;
}

.cvety-header .category-hover-header .category-sub-menu .menu-item:hover span {
  color: var(--color-primary);
}

/* Mobile header: centered logo, more room for city */
@media (max-width: 991px) {
  .cvety-mobile-header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .cvety-mobile-header-row .cvety-logo-wrap {
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .cvety-mobile-city-select {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    width: 100%;
  }

  .cvety-mobile-header-actions {
    grid-column: 3;
    grid-row: 1;
    margin-left: 0;
  }
}

/* Mobile sidebar */
#side-bar .close-icon-menu {
  top: 16px;
  right: 16px;
  z-index: 5;
}

#side-bar .search-input-area-menu {
  padding-left: 16px;
  padding-right: 16px;
}

#side-bar .category-sub-menu .menu-item span {
  color: #1f1f25;
}

#side-bar .category-sub-menu .menu-item:hover span {
  color: var(--color-primary);
}

/* Homepage spacing + title alignment */
.cvety-title-area-between {
  align-items: flex-end !important;
}

.cvety-section-link {
  line-height: 1.2;
  padding-bottom: 0.2rem;
}

.cvety-category-strip {
  padding-bottom: 2rem;
}

.cvety-collections-section {
  padding-top: 0.5rem;
}

.cvety-home-banner .banner-one-inner-content {
  max-width: 640px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cvety-home-banner .banner-one-inner-content {
    padding-right: 12%;
  }

  .cvety-home-banner .cvety-hero-title {
    font-size: 1.85rem !important;
  }
}

/* Footer logo alignment */
.footer-main-wrapper .cvety-logo-wrap {
  margin-left: 0 !important;
}

/* Catalog: sidebar above products when sticky */
@media (min-width: 1200px) {
  .shop-grid-sidebar-area aside.rts-sticky-column-item {
    position: relative;
    z-index: 5;
  }

  .shop-grid-sidebar-area .product-area-wrapper-shopgrid-list {
    position: relative;
    z-index: 1;
  }
}

/* Cart page quantity + remove spacing */
.rts-cart-list-area .quantity-edit .input {
  text-align: center;
  min-width: 44px;
}

.rts-cart-list-area .single-cart-area-list .close.section-activation {
  margin-left: 12px;
}

.rts-cart-list-area .product-main-cart {
  gap: 12px;
}

/* Shop page filters one row on desktop */
.cvety-shop-filters .cvety-shop-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.cvety-shop-filters .cvety-shop-search input[type="search"] {
  flex: 1;
  min-width: 0;
}

.cvety-shop-price-filter input {
  min-width: 150px;
}

@media (max-width: 767px) {
  .cvety-shop-filters {
    justify-content: stretch;
  }

  .cvety-shop-filters .search-area,
  .cvety-shop-filters .single-select {
    width: 100%;
  }
}

/* Search page spacing */
.cvety-search-page .cvety-search-form {
  margin-top: 1.5rem;
}

/* Account / corporate forms */
.cvety-account-layout .col-lg-9 > .h4,
.cvety-account-layout .col-lg-9 > h2 {
  width: 100%;
}

.cvety-account-layout .registration-form {
  max-width: 560px;
}

.cvety-orders-empty .rts-btn {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* Guides uniform buttons */
.cvety-guide-btn {
  min-width: 120px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Seller apply public page */
.cvety-seller-apply-page {
  padding-bottom: 3rem;
}

.cvety-seller-apply-card {
  max-width: 640px;
  margin: 0 auto;
}

.cvety-seller-apply-form {
  max-width: 100%;
}

/* Cart icon contrast in header */
.cvety-cart-trigger i {
  color: #1f1f25;
}

.accont-wishlist-cart-area-header .btn-border-only.cart:hover .cvety-cart-trigger i {
  color: var(--color-primary);
}

