:root {
  /* ==========================================
     ZUYRO NEW BRAND PALETTE
     Based on new navy + blue logo
  ========================================== */

  --primary: #246bfd;
  --primary-dark: #1554d1;
  --primary-deep: #061936;
  --primary-light: #eaf1ff;

  --secondary: #0b2c5f;
  --secondary-dark: #061936;
  --secondary-light: #edf3fb;

  --accent: #3b82f6;
  --accent-light: #eef5ff;

  /* Main brand gradient */
  --brand-gradient: linear-gradient(
    135deg,
    #3b82f6 0%,
    #246bfd 45%,
    #1554d1 72%,
    #0b2c5f 100%
  );

  /* Dark premium gradient */
  --brand-gradient-dark: linear-gradient(
    135deg,
    #061936 0%,
    #0b2c5f 52%,
    #1554d1 100%
  );

  /* Surfaces */
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-blue: #eef4ff;

  /* Text */
  --text: #0b1930;
  --text-muted: #68758a;

  /* Border */
  --border: #e2e8f0;

  /* Status */
  --success: #16a36d;
  --warning: #f59e0b;
  --danger: #e5484d;

  /* Shadows */
  --shadow-sm: 0 8px 28px rgba(21, 84, 209, 0.08);

  --shadow-md: 0 18px 48px rgba(6, 25, 54, 0.14);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.announcement-bar {
  padding: 9px 0;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.announcement-bar i {
  margin-right: 5px;
  color: var(--accent);
}

.main-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-image {
  width: 176px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  /* border-radius: 50%; */
  object-fit: cover;
  /* box-shadow: 0 8px 24px rgba(61, 128, 240, 0.22); */
}

.brand-logo-text {
  display: block;
}

.brand-logo-text strong {
  display: block;
  color: var(--primary-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-logo-text small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2px;
}

.brand-logo strong {
  display: block;
  color: var(--primary-dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-logo small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2px;
}

.location-selector {
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--text);
}

.location-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
}

.location-selector small {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
}

.location-selector strong {
  display: block;
  max-width: 125px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search {
  min-width: 0;
  height: 48px;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  transition: 0.25s ease;
}

.header-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(61, 128, 240, 0.12);
}

.header-search .search-icon {
  margin-left: 17px;
  color: var(--text-muted);
}

.header-search input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--text);
}

.header-search input::placeholder {
  color: #98a2bd;
}

.header-search button {
  align-self: stretch;
  padding: 0 22px;
  border: 0;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
}

.header-action > i,
.action-icon > i {
  font-size: 21px;
}

.action-icon {
  position: relative;
}

.action-icon small {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-size: 9px;
}

.category-navigation {
  border-top: 1px solid var(--border);
}

.category-navigation-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.all-category-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(61, 128, 240, 0.22);
}

.category-navigation nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.category-navigation nav a,
.track-order-link {
  color: #4e5873;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.category-navigation nav a:hover,
.track-order-link:hover {
  color: var(--primary);
}

.nav-offer-link {
  color: #6f4cf3 !important;
}

.track-order-link {
  margin-left: auto;
}

/* ==================================================
   ZUYRO HOME IMAGE SLIDER
================================================== */

.zy-home-slider-section {
  width: 100%;
  padding: 14px 0 20px;
}

/* Slider */
.zy-home-slider {
  position: relative;
  width: 100%;
}

/* Slider Container */
.zy-home-slider-inner {
  overflow: hidden;

  border-radius: 20px;

  background: var(--surface-soft);

  box-shadow: var(--shadow-sm);
}

/* Individual Slide */
.zy-home-slider .carousel-item {
  position: relative;
  width: 100%;
}

/* Link */
.zy-home-slider-link {
  width: 100%;
  display: block;

  text-decoration: none;
}

/* ==================================================
   IMAGE
================================================== */

.zy-home-slider-image {
  width: 100%;

  height: 485px;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 20px;
}

/* ==================================================
   INDICATORS
================================================== */

.zy-home-slider-indicators {
  right: auto;
  left: 50%;
  bottom: 14px;

  width: auto;

  margin: 0;

  display: flex;
  align-items: center;

  gap: 6px;

  transform: translateX(-50%);
}

.zy-home-slider-indicators [data-bs-target] {
  width: 7px;
  height: 7px;

  margin: 0;

  border: 0;
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.65);

  opacity: 1;

  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.zy-home-slider-indicators .active {
  width: 24px;

  background: #ffffff;
}

/* ==================================================
   PREVIOUS / NEXT
================================================== */

.zy-home-slider-prev,
.zy-home-slider-next {
  width: 62px;

  opacity: 1;
}

.zy-home-slider-arrow {
  width: 37px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.87);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);

  color: var(--text);

  font-size: 13px;

  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.12);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.zy-home-slider-prev:hover .zy-home-slider-arrow,
.zy-home-slider-next:hover .zy-home-slider-arrow {
  background: #ffffff;

  transform: scale(1.05);

  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.18);
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1400px) {
  .zy-home-slider-image {
    height: 485px;
  }
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {
  .zy-home-slider-inner {
    border-radius: 18px;
  }

  .zy-home-slider-image {
    height: 285px;

    border-radius: 18px;
  }

  .zy-home-slider-prev,
  .zy-home-slider-next {
    width: 55px;
  }

  .zy-home-slider-arrow {
    width: 34px;
    height: 34px;

    font-size: 12px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767.98px) {
  .zy-home-slider-section {
    padding: 10px 0 16px;
  }

  .zy-home-slider-inner {
    border-radius: 15px;
  }

  .zy-home-slider-image {
    height: 220px;

    border-radius: 15px;
  }

  .zy-home-slider-prev,
  .zy-home-slider-next {
    width: 46px;
  }

  .zy-home-slider-arrow {
    width: 31px;
    height: 31px;

    font-size: 11px;
  }

  .zy-home-slider-indicators {
    bottom: 10px;
  }

  .zy-home-slider-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
  }

  .zy-home-slider-indicators .active {
    width: 19px;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575.98px) {
  .zy-home-slider-section {
    padding: 8px 0 14px;
  }

  .zy-home-slider-inner {
    border-radius: 13px;
  }

  .zy-home-slider-image {
    height: 175px;

    border-radius: 13px;
  }

  /*
   * Hide arrows on small mobile.
   * User can swipe instead.
   */
  .zy-home-slider-prev,
  .zy-home-slider-next {
    display: none;
  }

  .zy-home-slider-indicators {
    bottom: 8px;
  }
}

/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 380px) {
  .zy-home-slider-image {
    height: 155px;
  }
}

/* HOME END */

.page-section {
  padding: 82px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background:
    radial-gradient(circle at 10% 0%, rgba(10, 199, 230, 0.1), transparent 26%),
    linear-gradient(135deg, #111a38 0%, #172d72 100%);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 34px;
}

.section-label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading h2,
.newsletter-wrapper h2 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 800;
  letter-spacing: -1px;
}

.section-heading p,
.newsletter-wrapper p {
  margin: 0;
  color: var(--text-muted);
}

.view-all-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.section-heading-light h2 {
  color: #ffffff;
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.56);
}

.section-heading-light .section-label,
.section-heading-light .view-all-link {
  color: var(--accent);
}

/* Categories */

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.category-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  color: #14231e;
  text-align: center;
  text-decoration: none;
}

.category-image-wrapper {
  width: 145px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.category-content {
  margin-top: 14px;
}

.category-content h3 {
  margin: 0 0 5px;
  color: #14231e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.category-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #6c7974;
  font-size: 12px;
  font-weight: 600;
}

.category-card:hover .category-image-wrapper {
  box-shadow: 0 14px 30px rgba(15, 91, 70, 0.14);
  transform: translateY(-5px);
}

.category-card:hover .category-image-wrapper img {
  transform: scale(1.06);
}

.category-card:hover .category-content h3,
.category-card:hover .category-content span {
  color: #0f5b46;
}

@media (max-width: 1199.98px) {
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .category-image-wrapper {
    width: 115px;
  }

  .category-content h3 {
    font-size: 14px;
  }

  .category-content span {
    font-size: 11px;
  }
}

@media (max-width: 479.98px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .category-image-wrapper {
    width: 120px;
  }
}

/* Categories */

.product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: 0.25s ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #f2f5ff;
}

.product-image-wrapper > a,
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.product-image-wrapper img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.06);
}

.product-badge,
.discount-badge {
  bottom: 13px;
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.product-badge {
  top: 13px;
  background: var(--brand-gradient);
  color: #ffffff;
}

.discount-badge {
  bottom: 13px;
  background: #eef4ff;
  color: #5b35d6;
}

.wishlist-button {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.product-content {
  padding: 18px;
}

.product-seller {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
}

.product-name {
  min-height: 42px;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 13px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
}

.product-rating {
  color: #f59e0b;
  font-weight: 700;
}

.product-rating small {
  color: var(--text-muted);
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
}

.product-price strong,
.product-price del {
  display: block;
}

.product-price strong {
  font-size: 18px;
}

.product-price del {
  margin-top: 2px;
  color: #98a2bd;
  font-size: 11px;
}

.add-cart-button {
  min-width: 76px;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 11px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.add-cart-button:hover {
  background: var(--brand-gradient);
  color: #ffffff;
}

.zuyro-promo-section {
  padding: 30px 0;
}

.zuyro-promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.zuyro-promo-card {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
}

.zuyro-promo-card-main {
  background: linear-gradient(135deg, #19489c, #6243e5);
  color: #fff;
}

.zuyro-promo-card-light {
  background: #f3f6ff;
  color: #1e3f78;
}

.zuyro-promo-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.zuyro-promo-card h2 {
  max-width: 430px;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 800;
}

.zuyro-promo-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 800;
}

.zuyro-promo-card p {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: 13px;
  opacity: 0.8;
}

.zuyro-promo-card strong {
  font-size: 11px;
}

.zuyro-promo-card-icon {
  font-size: 48px;
  opacity: 0.18;
}

/* MOBILE */
@media (max-width: 767px) {
  .zuyro-promo-grid {
    grid-template-columns: 1fr;
  }

  .zuyro-promo-card {
    min-height: auto;
    padding: 22px;
  }

  .zuyro-promo-card h2 {
    font-size: 24px;
  }

  .zuyro-promo-card h3 {
    font-size: 18px;
  }

  .zuyro-promo-card-icon {
    font-size: 38px;
  }
}

.seller-card {
  position: relative;
  min-height: 350px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.seller-card > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.seller-card:hover > img {
  transform: scale(1.06);
}

.seller-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(17, 26, 56, 0.94));
}

.seller-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 27px;
  color: #ffffff;
}

.verified-seller {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.seller-content h3 {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.seller-content p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.seller-meta {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 11px;
  font-weight: 600;
}

.seller-meta i {
  color: #ffd166;
}

.newsletter-section {
  padding: 75px 0 105px;
  background: #ffffff;
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(117, 75, 243, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 5% 100%,
      rgba(10, 199, 230, 0.12),
      transparent 28%
    ),
    var(--surface-blue);
}

.newsletter-wrapper > div {
  max-width: 540px;
}

.newsletter-form {
  min-width: 420px;
  display: flex;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  border: 0;
  outline: 0;
}

.newsletter-form button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.location-modal {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.location-modal .modal-header {
  padding: 26px 26px 10px;
}

.location-modal .modal-header h5 {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.location-modal .modal-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.location-modal .modal-body {
  padding: 15px 26px 28px;
}

.location-input-group {
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.location-input-group > i {
  margin-left: 15px;
  color: var(--primary);
}

.location-input-group input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  border: 0;
  outline: 0;
}

.location-input-group button {
  align-self: stretch;
  padding: 0 18px;
  border: 0;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
}

.mobile-bottom-navigation {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 45px rgba(45, 65, 150, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.mobile-bottom-navigation a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
}

.mobile-bottom-navigation i {
  font-size: 19px;
}

.mobile-bottom-navigation a.active {
  color: var(--primary);
}

@media (max-width: 1199px) {
  .location-selector {
    display: none !important;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    padding: 45px;
  }
}

@media (max-width: 991px) {
  .announcement-bar {
    display: none;
  }

  .main-header {
    position: relative !important;
  }

  .header-content {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .header-search {
    order: 3;
    flex-basis: 100%;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-action span:last-child {
    display: none;
  }

  .hero-carousel,
  .hero-slide {
    min-height: 450px;
  }

  .hero-content {
    width: 72%;
  }

  .hero-side-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .newsletter-wrapper {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .header-content {
    gap: 13px;
  }

  .brand-logo small {
    display: none;
  }

  .brand-logo strong {
    font-size: 18px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-action:first-child {
    display: none;
  }

  .header-search {
    height: 45px;
  }

  .header-search button {
    padding: 0 15px;
    font-size: 12px;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-carousel,
  .hero-slide {
    min-height: 520px;
  }

  .hero-slide {
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding: 34px 26px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 42%;
  }

  .hero-image::after {
    background: linear-gradient(180deg, var(--primary-dark), transparent 65%);
  }

  .hero-slide-two .hero-image::after {
    background: linear-gradient(180deg, #f1edff, transparent 65%);
  }

  .hero-highlights {
    display: none;
  }

  .hero-carousel .carousel-indicators {
    margin-left: 26px;
  }

  .hero-side-cards {
    grid-template-columns: 1fr;
  }

  .hero-offer-card {
    min-height: 190px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .page-section {
    padding: 58px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 11px;
  }

  .category-image-wrapper {
    height: 130px;
  }

  .product-image-wrapper {
    height: 190px;
  }

  .product-content {
    padding: 13px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .add-cart-button {
    width: 100%;
  }

  .newsletter-wrapper {
    padding: 30px 22px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .newsletter-form input {
    min-height: 45px;
  }

  .newsletter-form button {
    justify-content: center;
  }
}

.site-footer {
  padding: 70px 0 25px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(10, 199, 230, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, #111a38 0%, #172d72 55%, #2d236b 100%);
  color: #ffffff;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-image {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(10, 199, 230, 0.18);
}

.footer-logo .brand-logo-text strong {
  color: #ffffff;
  font-size: 22px;
}

.footer-logo .brand-logo-text small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-description {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer h5 {
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 11px;
}

.site-footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer ul li a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact i {
  margin-top: 2px;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .site-footer {
    padding: 55px 0 100px;
  }

  .footer-logo-image {
    width: 50px;
    height: 50px;
  }

  .footer-logo .brand-logo-text strong {
    font-size: 19px;
  }

  .footer-logo .brand-logo-text small {
    display: block;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 35px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

/* ==================================================
   ZUYRO CONTACT SECTION
================================================== */

.zy-contact-section {
  padding: 58px 0 78px;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(10, 199, 230, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(117, 75, 243, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.zy-contact-wrapper {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

/* Contact information */

.zy-contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 52px 48px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(10, 199, 230, 0.2),
      transparent 35%
    ),
    var(--brand-gradient-dark);
  color: #ffffff;
}

.zy-contact-info::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.zy-contact-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.zy-contact-title {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 750;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.zy-contact-title span {
  display: block;
  color: #b9f5ff;
}

.zy-contact-description {
  position: relative;
  z-index: 1;
  max-width: 490px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.75;
}

.zy-contact-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.zy-contact-detail-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

a.zy-contact-detail-item:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateX(3px);
}

.zy-contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #b9f5ff;
  font-size: 16px;
}

.zy-contact-detail-item small,
.zy-contact-detail-item strong {
  display: block;
}

.zy-contact-detail-item small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.zy-contact-detail-item strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.zy-contact-support-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.zy-contact-support-note > i {
  margin-top: 2px;
  color: #b9f5ff;
  font-size: 17px;
}

.zy-contact-support-note strong,
.zy-contact-support-note span {
  display: block;
}

.zy-contact-support-note strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 11px;
}

.zy-contact-support-note span {
  font-size: 10px;
  line-height: 1.55;
}

/* Contact form */

.zy-contact-form-card {
  padding: 48px;
  background: #ffffff;
}

.zy-contact-form-heading {
  margin-bottom: 27px;
}

.zy-contact-form-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zy-contact-form-heading h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.zy-contact-form-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.zy-contact-form {
  display: grid;
  gap: 17px;
}

.zy-contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.zy-contact-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.zy-contact-field label span {
  color: var(--danger);
}

.zy-contact-input-wrap,
.zy-contact-textarea-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.zy-contact-input-wrap {
  min-height: 47px;
  display: flex;
  align-items: center;
}

.zy-contact-input-wrap:focus-within,
.zy-contact-textarea-wrap:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(61, 128, 240, 0.1);
}

.zy-contact-input-wrap > i:first-child {
  margin-left: 15px;
  color: #8792ac;
  font-size: 14px;
}

.zy-contact-input-wrap input,
.zy-contact-input-wrap select {
  width: 100%;
  min-width: 0;
  min-height: 45px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.zy-contact-input-wrap input::placeholder,
.zy-contact-textarea-wrap textarea::placeholder {
  color: #9aa4ba;
}

.zy-contact-select-wrap select {
  padding-right: 42px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.zy-contact-select-arrow {
  position: absolute;
  right: 15px;
  color: #8792ac;
  font-size: 11px;
  pointer-events: none;
}

.zy-contact-textarea-wrap textarea {
  width: 100%;
  min-height: 126px;
  display: block;
  resize: vertical;
  padding: 14px 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.6;
}

.zy-contact-submit-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 3px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(61, 128, 240, 0.24);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.zy-contact-submit-btn:hover {
  color: #ffffff;
  box-shadow: 0 13px 29px rgba(96, 94, 242, 0.3);
  transform: translateY(-2px);
}

.zy-contact-submit-btn i {
  font-size: 14px;
  transition: transform 0.22s ease;
}

.zy-contact-submit-btn:hover i {
  transform: translateX(3px);
}

/* Tablet */

@media (max-width: 991.98px) {
  .zy-contact-section {
    padding: 45px 0 60px;
  }

  .zy-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .zy-contact-info {
    padding: 42px;
  }

  .zy-contact-form-card {
    padding: 42px;
  }
}

/* Mobile */

@media (max-width: 575.98px) {
  .zy-contact-section {
    padding: 24px 0 42px;
  }

  .zy-contact-wrapper {
    border-radius: 18px;
  }

  .zy-contact-info {
    padding: 30px 21px;
  }

  .zy-contact-title {
    font-size: 28px;
  }

  .zy-contact-description {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .zy-contact-form-card {
    padding: 29px 20px;
  }

  .zy-contact-form-heading h2 {
    font-size: 23px;
  }

  .zy-contact-form-row {
    grid-template-columns: 1fr;
  }

  .zy-contact-submit-btn {
    width: 100%;
  }
}

/* =========================================================
   Zuyro smart header search
   ========================================================= */
.zuyro-smart-search {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 220px;
  z-index: 1080;
}

.zuyro-smart-search-form {
  position: relative;
  width: 100%;
  min-width: 0;
}

/* .zuyro-smart-search-form input {
    padding-right: 132px;
} */

.zuyro-smart-search-form input {
  width: 100%;
  min-width: 0;
}

.zuyro-search-clear-button {
  position: absolute;
  top: 50%;
  right: 91px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7b8490;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.zuyro-search-clear-button:hover {
  background: #eef4ff;
  color: #2563eb;
}

.zuyro-search-clear-button[hidden] {
  display: none !important;
}

/* Main dropdown */
.zuyro-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  width: 100%;
  min-width: 100%;
  max-width: 100%;

  max-height: min(520px, calc(100vh - 150px));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;

  background: #ffffff;
  border: 1px solid rgba(20, 55, 100, 0.1);
  border-radius: 16px;

  box-shadow:
    0 22px 55px rgba(15, 38, 73, 0.15),
    0 6px 18px rgba(15, 38, 73, 0.08);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  z-index: 1090;
  box-sizing: border-box;
}

.zuyro-search-dropdown[hidden] {
  display: none !important;
}

.zuyro-search-dropdown-content {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.zuyro-search-section {
  padding: 4px 0;
}

.zuyro-search-section + .zuyro-search-section {
  margin-top: 4px;
  padding-top: 9px;
  border-top: 1px solid #edf1f6;
}

.zuyro-search-section-header {
  min-height: 32px;
  padding: 4px 8px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.zuyro-search-section-title {
  margin: 0;
  color: #7a8492;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zuyro-search-history-clear {
  padding: 3px 6px;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.zuyro-search-history-clear:hover {
  text-decoration: underline;
}

.zuyro-search-item {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 8px 9px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #172033;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;

  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.zuyro-search-item:hover,
.zuyro-search-item.is-active {
  background: #f3f7ff;
}

.zuyro-search-item:active {
  transform: scale(0.995);
}

.zuyro-search-item-image {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2f5f9;
  border: 1px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zuyro-search-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zuyro-search-item-image i {
  color: #4d6fa9;
  font-size: 17px;
}

.zuyro-search-item-body {
  min-width: 0;
  flex: 1;
}

.zuyro-search-item-title {
  margin: 0;
  overflow: hidden;
  color: #172033;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zuyro-search-item-meta {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7b8492;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: 1.3;
}

.zuyro-search-item-type {
  padding: 2px 7px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #315fba;
  font-size: 10px;
  font-weight: 700;
}

.zuyro-search-item-arrow {
  flex: 0 0 auto;
  color: #9ba5b3;
  font-size: 13px;
}

.zuyro-search-history-item {
  min-height: 45px;
}

.zuyro-search-history-item .zuyro-search-item-image {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  border: 0;
  background: #f2f6fb;
}

.zuyro-search-history-item .zuyro-search-item-title {
  font-size: 12px;
  font-weight: 600;
}

.zuyro-search-history-remove {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #939daa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zuyro-search-history-remove:hover {
  background: #e8effb;
  color: #315fba;
}

.zuyro-search-state {
  min-height: 105px;
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: #7b8492;
  text-align: center;
}

.zuyro-search-state i {
  color: #5478b7;
  font-size: 22px;
}

.zuyro-search-state strong {
  color: #273144;
  font-size: 13px;
  font-weight: 700;
}

.zuyro-search-state span {
  max-width: 290px;
  font-size: 11px;
  line-height: 1.5;
}

.zuyro-search-loader {
  width: 24px;
  height: 24px;
  border: 2px solid #e1e9f6;
  border-top-color: #315fba;
  border-radius: 50%;
  animation: zuyroSearchSpin 0.7s linear infinite;
}

@keyframes zuyroSearchSpin {
  to {
    transform: rotate(360deg);
  }
}

.zuyro-search-view-all {
  width: 100%;
  min-height: 45px;
  margin-top: 5px;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: #edf4ff;
  color: #285db4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.zuyro-search-view-all:hover {
  background: #e1ecff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {
  .zuyro-smart-search {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .zuyro-smart-search-form {
    width: 100%;
    max-width: 100%;
  }

  .zuyro-smart-search-form input {
    width: 100%;
    max-width: 100%;
  }

  /*
     * IMPORTANT:
     * Do not use position: fixed here.
     * It must stay attached to search wrapper.
     */
  .zuyro-search-dropdown {
    position: absolute;

    top: calc(100% + 6px);
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    min-width: 100%;
    max-width: 100%;

    max-height: min(460px, calc(100vh - 180px));

    margin: 0;
    border-radius: 14px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {
  .zuyro-smart-search {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .zuyro-smart-search-form {
    width: 100%;
  }

  .zuyro-smart-search-form input {
    width: 100%;
    min-width: 0;
    padding-right: 104px;
    font-size: 12px;
  }

  .zuyro-smart-search-form > button[type="submit"] {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 11px;
  }

  .zuyro-search-clear-button {
    right: 70px;
  }

  .zuyro-search-dropdown {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;
    right: 0;

    width: 100%;
    min-width: 100%;
    max-width: 100%;

    max-height: min(420px, calc(100vh - 160px));

    border-radius: 12px;
  }

  .zuyro-search-dropdown-content {
    padding: 6px;
  }

  .zuyro-search-item {
    min-height: 54px;
    padding: 7px;
    gap: 9px;
  }

  .zuyro-search-item-image {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .zuyro-search-item-title {
    font-size: 12px;
  }

  .zuyro-search-item-meta {
    font-size: 10px;
  }
}
