/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Arkbae Shop — minimal, modern, fast */
:root {
  --ark-primary: #0f172a;
  --ark-secondary: #ffcc66;
  --ark-accent: #df2e38;
  --ark-bg: #ffffff;
  --ark-muted: #f8fafc; /* neutral */
  --ark-border: rgba(15, 23, 42, 0.1);
  --ark-text: #0b1220;
  --ark-subtext: rgba(11, 18, 32, 0.68);
  --ark-radius: 18px;
  --ark-radius-sm: 12px;
  --ark-shadow: 0 22px 60px rgba(2, 6, 23, 0.1);
  --ark-shadow-sm: 0 12px 30px rgba(2, 6, 23, 0.09);
  --ark-container: 1170px;
  --ark-container-wide: 1360px;

  --ark-danger: #ff3b30;
  --ark-success: #34c759;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Tiro Bangla",
    sans-serif;
  color: var(--ark-text);
  background: var(--ark-bg);
  font-weight: 400;
  line-height: 1.3;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.98;
}
button,
input,
select,
textarea {
  font: inherit;
}

.ark-container {
  width: min(96% - 32px, var(--ark-container));
  margin-inline: auto;
}
.ark-container--wide {
  width: min(96% - 32px, var(--ark-container-wide));
}

.ark-main {
  padding: 32px 0 56px;
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.title,
.section-title,
.entry-title,
.woocommerce-products-header__title {
  font-family:
    "Inter",
    "Hind Siliguri",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
  margin-top: 0;
}
.ark-body-wrap {
  overflow: hidden;
}
.ark-body-wrap.ark-smooth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.ark-card {
  background: #fff;
  border: 1px solid var(--ark-border);
  border-radius: var(--ark-radius);
  -webkit-box-shadow: var(--ark-shadow-sm);
          box-shadow: var(--ark-shadow-sm);
}
.ark-grid {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}
.ark-grid--posts {
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ark-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--ark-border);
  font-weight: 700;
  line-height: 1;
  -webkit-transition:
    background 0.12s ease,
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  transition:
    background 0.12s ease,
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  -o-transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  will-change: transform;
  min-width: 140px;
}
.ark-btn:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--ark-shadow-sm);
          box-shadow: var(--ark-shadow-sm);
}
.ark-btn--primary {
  background: var(--ark-accent);
  color: #fff;
  border-color: transparent;
}
.ark-btn--ghost {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--ark-primary);
}

/* Header */
/* --- Top Bar Styles --- */
.ark-offer-section{
  background-color: var(--ark-secondary);
}
.ark-offer-section .arcbea-counter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  padding: 5px 10px;
}
.ark-topbar {
  background-color: var(--ark-accent); /* Dark background */
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ark-topbar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

/* সার্কেল আইকন ডিজাইন */
.ark-topbar__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.ark-social-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 28px;
    height: 28px;
    background-color: var(--ark-secondary); /* হালকা ব্যাকগ্রাউন্ড */
    border-radius: 50%;
    color:#000;
    text-decoration: none;
    font-size: 12px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ark-social-circle:hover {
    background-color: #000; /* হোভার করলে কালো ব্যাকগ্রাউন্ড */
    color: #fff;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.ark-topbar__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.ark-topbar__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px; /* Space between icon and text */
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.ark-topbar__item:hover {
  color: #fff;
}

/* Adjust SVG icons in topbar */
.ark-topbar__item svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* Mobile: Stack items */
@media (max-width: 600px) {
  .ark-topbar {
    display: none;
  }
  .ark-topbar__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }

  .ark-topbar__right {
    gap: 15px;
  }
}
.ark-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ark-border);
}
.ark-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.ark-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}
.ark-header__brand .custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ark-logo-text {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}
/* .custom-logo {
  height: 34px;
  width: auto;
} */

.ark-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--ark-border);
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.ark-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ark-primary);
  border-radius: 2px;
}
.ark-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.ark-nav__list a {
  padding: 7px 12px;
  border-radius: 0px;
  font-weight: 650;
  color: rgba(11, 18, 32, 0.86);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 2px solid transparent;
}
.ark-nav__list a:hover {
  border-bottom: 2px solid var(--ark-accent);
}

.ark-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.ark-action {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--ark-border);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.ark-action svg {
  fill: var(--ark-primary);
  opacity: 0.9;
}
.ark-search-trigger:hover{
  cursor: pointer;
}
.ark-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ark-accent);
  color: #fff;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 6px;
  font-weight: 800;
  border: 2px solid #fff;
}

@media (max-width: 980px) {
  .ark-header__brand {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
  .ark-header__toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .ark-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #fff;
    border-bottom: 1px solid var(--ark-border);
  }
  .ark-nav.is-open {
    display: block;
  }
  .ark-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 12px 16px;
  }
  .ark-nav__list a {
    display: block;
    width: 100%;
    border-radius: 0px;
  }
}
.ark-archive__header,
.ark-page__header {
  text-align: center;
  background-color: var(--ark-accent);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 30px;
  /* border-radius: 12px; */
}
.ark-archive__title,
.ark-page__title,
.ark-breadcrumb {
  margin-bottom: 0;
  color: #fff;
}
.ark-hero {
  /* background: radial-gradient(
      1000px 500px at 20% 20%,
      rgba(37, 99, 235, 0.44),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 80% 0%,
      rgba(28, 111, 255, 0.24),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, var(--ark-muted)); */
  /* background-color: #e5e5fb; */
  background-color: rgb(255 243 243 / 93%);
  background-image: url(../img/hero-bg.png);
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
}
.ark-promo-banner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 40px;
}
.ark-promo-banner .single-promo {
  border-radius: 16px;
  overflow: hidden;
}
.ark-promo-banner .single-promo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ark-hero__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 18px 0.8fr;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  /* align-items: center; */
}
.ark-hero__content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 60px 40px;
}
@media (max-width: 980px) {
  .ark-hero__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .ark-hero__content {
    padding: 40px 10px;
  }
  .ark-hero__subtitle,
  .ark-hero__subtitle p {
    font-size: 16px;
    margin-top: 0 !important;
  }
}

.ark-hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1.3;
}
.ark-hero__title span {
  color: var(--ark-accent);
}
.ark-hero__subtitle {
  margin: 0 0 18px;
  margin-bottom: 30px;
  max-width: 54ch;
  color: var(--ark-subtext);
  font-size: 22px;
  line-height: 1.55;
}
  .ark-hero__subtitle p {
    margin-top: 0;
  }
.ark-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 18px;
}

.ark-hero__perks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ark-perk {
  padding: 5px 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 650;
  color: rgba(11, 18, 32, 0.74);
  font-size: 9px;
}

.ark-hero__panel {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
.ark-hero__card {
  padding: 18px;
  border-radius: var(--ark-radius);
  border: 1px solid var(--ark-border);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.ark-hero__cardTitle {
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ark-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.ark-search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--ark-border);
  background: #fff;
  outline: none;
}
.ark-search__input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}
.ark-search__btn {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.2);
  font-weight: 800;
  cursor: pointer;
  min-width: 130px;
}
.ark-hero__hint {
  margin-top: 10px;
  color: var(--ark-subtext);
  font-size: 13px;
}

.ark-hero__mini {
  padding: 16px;
  border-radius: var(--ark-radius);
  border: 1px solid var(--ark-border);
  background: rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.ark-hero__miniTitle {
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ark-hero__miniGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
.ark-miniProduct {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56px 10px 1fr;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
}
.ark-miniProduct__img img {
  border-radius: 12px;
  display: block;
}
.ark-miniProduct__name {
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
}
.ark-miniProduct__price {
  color: rgba(11, 18, 32, 0.7);
  font-weight: 750;
  font-size: 13px;
}

.ark-section {
  padding: 46px 0;
}

.ark-treding-products {
  padding-top: 0;
  padding-bottom: 0;
}
/* আপনার বর্তমান কোডে এই পরিবর্তনগুলো যোগ করুন */

.ark-section__head {
  margin-bottom: 24px; /* স্পেস একটু বাড়ানো হয়েছে সৌন্দর্যের জন্য */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 2px solid var(--ark-border); /* হালকা বেস লাইন */
  padding-bottom: 8px;
}

.ark-section__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
  position: relative;
  font-weight: 700;
  color: #222;
}

/* Flash Icon এর মতো নিচে রঙিন বর্ডার */
.ark-section__title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* মেইন বর্ডারের সাথে এলাইন করার জন্য */
  left: 0;
  width: 80px; /* বর্ডারের দৈর্ঘ্য */
  height: 4px; /* বর্ডারের পুরুত্ব */
  
  /* Flashy Gradient Color - আপনি আপনার পছন্দমতো কালার কোড দিতে পারেন */
  background: -webkit-gradient(linear, left top, right top, from(#ff4d4d), to(#f9cb28));
  background: -o-linear-gradient(left, #ff4d4d, #f9cb28);
  background: linear-gradient(90deg, #ff4d4d, #f9cb28); 
  
  border-radius: 2px;
  z-index: 1;
}

/* Home page Category */
.ark-grid--cats {
  display: -ms-grid;
  display: grid;
  gap: 15px; /* Adjust gap as needed */
  -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .ark-grid--cats {
    -ms-grid-columns: (minmax(0, 1fr))[5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .ark-grid--cats {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ark-header__toggle {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .ark-header__toggle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ark-hero__inner {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 768px) {
  .ark-header__brand {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
  .ark-grid--cats {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ark-nav__list {
    gap: 5px;
    padding: 5px 10px;
  }

  .ark-btn {
    min-width: 100px;
  }
  .ark-search {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .ark-search__btn {
    min-width: 100%;
  }
  .ark-promo-banner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .ark-hero__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .ark-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ark-hero__card__search {
    display: none;
  }
  .ark-cat__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ark-cat__name {
    font-size: 12px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .ark-cat__cta {
    width: 100% !important;
    height: 25px !important;
  }
  .woocommerce .woocommerce-ordering select {
    width: 120px;
  }
}


@media (max-width: 380px) {
  .ark-grid--cats {
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .ark-header__actions{
    gap: 5px
  }
  .ark-header__inner{
    gap: 10px;
  }
}

.ark-cat {
  overflow: hidden;
  border-radius: 6px !important;
}
.ark-cat__img {
  aspect-ratio: 4 / 3;
  background: rgba(17, 24, 39, 0.04);
}
.ark-cat__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ark-cat__ph {
  width: 100%;
  height: 100%;
}
.ark-cat__body {
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.ark-cat__name {
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ark-cat__cta {
  color: rgba(11, 18, 32, 0.7);
  font-weight: 750;
  width: 35px;
  height: 35px;
  border-radius: 6px;
  border: 1px solid var(--ark-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.ark-cat__cta:hover {
  background-color: var(--ark-accent);
  color: #fff;
}
.ark-postcard {
  overflow: hidden;
}
.ark-postcard__thumb {
  display: block;
  aspect-ratio: 16/10;
  background: rgba(17, 24, 39, 0.05);
}
.ark-postcard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ark-postcard__body {
  padding: 14px;
}
.ark-postcard__title {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ark-postcard__meta {
  color: rgba(11, 18, 32, 0.6);
  font-size: 13px;
  margin-bottom: 8px;
}
.ark-postcard__excerpt {
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.6;
}
/* Cart Quantity Button */
/* qty wrap */
.ark-qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 6px;
}

.ark-qty-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ark-cart-border);
  border-radius: 10px;
  background: var(--ark-cart-white);
  color: var(--ark-cart-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ark-qty-btn:hover {
  background: var(--ark-cart-accent);
  border-color: var(--ark-cart-accent);
  color: #fff;
}

.ark-qty-input {
  width: 58px;
  height: 38px;
  border: 1px solid var(--ark-cart-border);
  border-radius: 10px;
  background: var(--ark-cart-white);
  color: var(--ark-cart-text);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 0 8px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.ark-qty-input::-webkit-outer-spin-button,
.ark-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ark-remove-item {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(227, 6, 19, 0.15);
  border-radius: 10px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--ark-cart-accent);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ark-remove-item:hover {
  background: var(--ark-cart-accent);
  border-color: var(--ark-cart-accent);
  color: #fff;
}

/* cart page native remove link */
.woocommerce-cart table.shop_table .product-remove a.remove {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px !important;
  background: rgba(227, 6, 19, 0.08);
  color: var(--ark-cart-accent) !important;
  font-size: 24px !important;
  line-height: 1 !important;
  transition: all 0.2s ease;
}

.woocommerce-cart table.shop_table .product-remove a.remove:hover {
  background: var(--ark-cart-accent) !important;
  color: #fff !important;
}

/* checkout order list */
.woocommerce-checkout-review-order-table .product-name .ark-qty-wrap--checkout {
  margin-top: 10px;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-cart table.shop_table .product-subtotal {
  white-space: nowrap;
}

/* optional static qty */
.ark-qty-static {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ark-cart-border);
  border-radius: 10px;
  background: var(--ark-cart-soft);
  font-weight: 600;
}

/* mobile */
@media (max-width: 767px) {
  .ark-qty-wrap {
    gap: 6px;
  }

  .ark-qty-btn,
  .ark-remove-item {
    width: 34px;
    height: 34px;
  }

  .ark-qty-input {
    width: 50px;
    height: 34px;
    font-size: 14px;
  }
}
/* ===== Footer ======= */
.d-none{display: none;}
#arkbae-checkout-loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ffffff;
    z-index:999999;
    display:none;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

.arkbae-loader{
    width:45px;
    height:45px;
    border:4px solid #eee;
    border-top:4px solid #000;
    border-radius:50%;
    animation:arkbaeSpin 1s linear infinite;
}

@keyframes arkbaeSpin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}
/* =========================================================
   Footer Ecosystem Layout
   ========================================================= */

.ark-footer--ecosystem {
  background: var(--ark-primary);
  color: rgba(255, 255, 255, 0.82);
  border-top: 0;
  padding: 0;
}

.ark-footer--ecosystem a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.ark-footer--ecosystem a:hover {
  color: var(--ark-accent);
  opacity: 1;
}

.ark-footer-features,
.ark-footer-main,
.ark-footer-meta,
.ark-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ark-footer-features {
  border-top: 0;
}

.ark-footer-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.ark-footer-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 24px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ark-footer-feature:last-child {
  border-right: 0;
}

.ark-footer-feature__icon {
  flex: 0 0 46px;
  width: 46px;
}

.ark-footer-feature__icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.ark-footer-feature__title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.ark-footer-feature__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.ark-footer-main {
  padding: 42px 0;
}

.ark-footer-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 420px);
  gap: 42px;
  align-items: start;
}

.ark-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px 36px;
}

.ark-footer-column__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.ark-footer-column__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ark-footer-column__links li,
.ark-footer-column__links span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.ark-footer-aside {
  display: grid;
  gap: 26px;
}

.ark-footer-apps__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ark-footer-apps__item a,
.ark-footer-apps__item img {
  display: block;
}

.ark-footer-apps__img {
  max-height: 56px;
  width: auto;
}

.ark-footer-info-content,
.ark-footer-info-content p,
.ark-footer-info-content div,
.ark-footer-info-content span,
.ark-footer-info-content li,
.ark-footer-info-content a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.ark-footer-info-content p {
  margin: 0 0 12px;
}

.ark-footer-info-content a:hover {
  color: var(--ark-accent);
}

.ark-footer-info-content ul,
.ark-footer-info-content ol {
  margin: 0 0 12px 18px;
  padding: 0;
}

.ark-footer-info-content strong,
.ark-footer-info-content b,
.ark-footer-info-content h1,
.ark-footer-info-content h2,
.ark-footer-info-content h3,
.ark-footer-info-content h4,
.ark-footer-info-content h5,
.ark-footer-info-content h6 {
  color: #fff;
}

.ark-footer-meta {
  padding: 30px 0 26px;
}

.ark-footer-meta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 36px;
  align-items: start;
}

.ark-footer-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ark-footer-logo-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ark-footer-logo-list__img {
  max-height: 32px;
  width: auto;
  display: block;
}

.ark-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ark-footer-socials__link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}

.ark-footer-socials__link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.ark-footer-socials__link:hover {
  background: var(--ark-accent);
  transform: translateY(-1px);
}

.ark-footer-copy {
  padding: 18px 0;
}

.ark-footer-copy p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .ark-footer-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ark-footer-feature:nth-child(2n) {
    border-right: 0;
  }

  .ark-footer-main__grid {
    grid-template-columns: 1fr;
  }

  .ark-footer-meta__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ark-footer-feature {
    min-height: auto;
    padding: 18px 10px;
  }

  .ark-footer-feature__title {
    font-size: 16px;
  }

  .ark-footer-main {
    padding: 30px 0;
  }

  .ark-footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .ark-footer-column__title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .ark-footer-features__grid,
  .ark-footer-columns {
    grid-template-columns: 1fr;
  }

  .ark-footer-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ark-footer-feature:last-child {
    border-bottom: 0;
  }

  .ark-footer-apps__img {
    max-height: 48px;
  }
}

.ark-pagination {
  margin-top: 18px;
}
.ark-cleanlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
/* Contact Page */

/* --- Layout Grid --- */
.ark-contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.ark-section-title {
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f3f4f6;
  color: #222;
}

/* --- Contact Info Items --- */
.ark-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.ark-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.ark-info-icon {
  width: 50px;
  height: 50px;
  background: #f3f4f6;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #222;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ark-info-content h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #6b7280;
}

.ark-info-content p,
.ark-info-content a {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
}

.ark-info-content a:hover {
  color: var(--ark-accent); /* Blue highlight */
}

/* --- Map --- */
.ark-contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
  display: block;
}

/* --- Form Wrapper --- */
.ark-contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* --- WhatsApp Specific Styles --- */

/* Green Icon Background */
.ark-icon-whatsapp {
  background-color: #25d366; /* WhatsApp Brand Green */
  color: white; /* Icon color */
}

/* Green Link Text */
.ark-whatsapp-link {
  color: #25d366 !important;
  font-weight: 700 !important;
  display: inline-block;
}

.ark-whatsapp-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* --- Form Container --- */
.ark-contact-form {
  max-width: 100%;
  margin: 0 auto;
}

/* --- Form Rows --- */
.ark-form-row {
  margin-bottom: 20px;
}

/* --- Labels --- */
.ark-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

/* --- All Inputs (Text, Email, Select, Textarea) --- */
.ark-contact-form input[type="text"],
.ark-contact-form input[type="email"],
.ark-contact-form input[type="tel"],
.ark-contact-form textarea,
.ark-contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e7eb; /* Light Gray Border */
  border-radius: 6px;
  background-color: #fff;
  font-size: 15px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
}

/* --- Focus State (Blue Glow) --- */
.ark-contact-form input:focus,
.ark-contact-form textarea:focus,
.ark-contact-form select:focus {
  outline: none;
  border-color: var(--ark-accent);
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* --- Textarea Height --- */
.ark-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Submit Button --- */
.ark-contact-form input.ark-submit {
  background-color: var(--ark-accent); /* Black Background */
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.ark-contact-form input.ark-submit:hover {
  background-color: var(--ark-accent); /* Blue on Hover */
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* --- Contact Form 7 Specific Validation Messages --- */

/* Error text under the field */
.wpcf7-not-valid-tip {
  color: #dc2626; /* Red */
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

/* The box that appears at the bottom after submit */
.wpcf7-response-output {
  border-radius: 6px;
  padding: 15px !important;
  margin: 20px 0 0 0 !important;
  font-size: 14px;
  text-align: center;
}

/* Success Message Box (Green) */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #ecfdf5;
  border: 1px solid #10b981 !important;
  color: #047857;
}

/* Error Message Box (Red) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background-color: #fef2f2;
  border: 1px solid #ef4444 !important;
  color: #b91c1c;
}

/* Spinner (Loader) position */
.wpcf7-spinner {
  margin-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ark-contact-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; /* Stack columns */
    gap: 50px;
  }

  .ark-contact-form-wrapper {
    padding: 30px;
  }
}
/* 404 */
.error-page {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* About Us */
/* --- About Hero --- */
.ark-about-hero {
  background-color: #f9fafb;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.ark-about-hero__title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #111;
}

.ark-about-hero__text {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Story Section --- */
.ark-story-section {
  margin-bottom: 100px;
}

.ark-story-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ark-story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ark-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.ark-text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* --- Stats Row --- */
.ark-stats-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.ark-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ark-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  line-height: 1;
}

.ark-stat-label {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Team Section --- */
.ark-team-section {
  margin-bottom: 100px;
}

.ark-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.ark-section-header p {
  color: #666;
  font-size: 18px;
}

.ark-team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ark-team-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ark-team-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ark-team-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ark-team-info {
  padding: 20px;
  text-align: center;
}

.ark-team-info h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #222;
}

.ark-team-info span {
  font-size: 14px;
  color: var(--ark-accent); /* Accent color */
  font-weight: 600;
}

/* Single Page */
/* Container Layout */

/* Featured Image */
.single .ark-post__thumbnail {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single .ark-post__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Post Header & Meta */
.single .ark-post__header {
  margin-bottom: 40px;
  text-align: center;
}

.single .ark-post__title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.2;
}
.single .ark-post__content {
  text-align: center;
}
.single .ark-post__meta {
  font-size: 0.9rem;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single .ark-post__meta .dashicons {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.single .ark-post__categories a {
  color: var(--ark-accent);
  text-decoration: none;
  font-weight: 500;
}

/* Content Area */
.single .ark-post__content {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 50px;
}

.single .ark-post__content p {
  margin-bottom: 1.5em;
}

.single .ark-post__content h2,
.single .ark-post__content h3 {
  margin: 1.5em 0 0.5em;
  color: #111;
}

/* Footer & Tags */
.single .ark-post__footer {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.single .ark-post__tags {
  font-size: 0.95rem;
}

.single .ark-post__tags a {
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #444;
  display: inline-block;
  margin: 2px;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}

.single .ark-post__tags a:hover {
  background: var(--ark-accent);
  color: #fff;
}

/* Popup */
/* popup */
.custom-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999999;
  background: #fff;
  padding: 20px;
  width: 96%;
  max-width: 600px;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.popup-header {
  text-align: right;
}
.close-button {
  background: var(--ark-accent);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

/* form */
.custom-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 0;
}
.product-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  margin-bottom: 5px;
}
.thumbnail-cell {
  padding: 10px;
  text-align: left;
  width: 150px;
  height: 150px;
}
.product-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.details-cell {
  padding: 10px;
  text-align: left;
}
.product-price {
  color: #888;
  margin-top: 20px;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.form-title {
  font-size: 18px;
  margin-bottom: -5px;
  color: #6c6c6c;
}
.shipping-select {
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
}
.summary-table {
  margin-bottom: 5px;
  border-radius: 4px;
}
.summary-table td {
  padding: 5px 10px;
  border: 1px solid #ddd !important;
}
.total-label,
.total-amount {
  font-weight: 600;
  color: #000;
}
.aksathe-order-confirm-button {
  background: var(--ark-accent);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 8px;
}
.order-customer-information-filled {
  background: var(--ark-accent);
}
.order-successful-message {
  text-align: center;
}
.order-success-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: #f9f9f9;
  border: 1px solid #ddd;
}
.order-success-table td {
  padding: 10px;
  text-align: left;
}
.order-success-table td:first-child {
  font-weight: 600;
  width: 40%;
}
.custom-after-success-order-button a {
  color: #fff;
  background: #6bb933;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
}
form#custom-checkout-form input,
form#custom-checkout-form textarea {
  color: #ccc !important;
  min-height: 45px !important;
  padding: 5px 10px !important;
  border-radius: 5px !important;
  border: 1px solid #ddd;
}
.direct-buy-btn-wrapper {
  margin-bottom: 0 !important;
}

/* optional: your button style (NO inline) */
.direct-buy-btn {
  background: var(--ark-accent);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .single .ark-post__title {
    font-size: 1.8rem;
  }

  .single .ark-post__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}



/* Thank you Page */
.woocommerce-order .woocommerce-order-overview,
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details,
.woocommerce-order > p {
  display: none !important;
}

/* Thank you Page */
.ark-ty {
  padding: 32px 0;
}
.ark-ty__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.ark-ty__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.ark-ty__badge {
  width: 44px;
  height: 44px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 22px;
}
.ark-ty__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}
.ark-ty__subtitle {
  margin: 6px 0 10px;
  color: rgba(0, 0, 0, 0.7);
}
.ark-ty__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.75);
}
.ark-ty__meta span {
  background: rgba(0, 0, 0, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
}
.ark-ty__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 14px;
}

.ark-ty__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 900px) {
  .ark-ty__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.ark-ty__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.ark-ty__card-title {
  margin: 0 0 10px;
  font-size: 18px;
}
.ark-ty__kv-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}
.ark-ty__kv-row:last-child {
  border-bottom: 0;
}
.ark-ty__note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
}
.ark-ty__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.ark-ty__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
}
.ark-ty__item-name {
  font-weight: 700;
}
.ark-ty__item-meta {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 2px;
}
.ark-ty__item-right {
  font-weight: 700;
  white-space: nowrap;
}
.ark-ty__totals {
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 10px;
}
.ark-ty__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}
.ark-ty__addr {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
@media (min-width: 900px) {
  .ark-ty__addr {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.ark-ty__addr-title {
  font-weight: 800;
  margin-bottom: 6px;
}
.ark-ty__addr-sub {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}

/* Arkbae Oder Track (For Customer) */
.arkbae-track-container {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 16px;
  font-family: "Hind Siliguri", sans-serif;
}
.arkbae-track-box {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 25px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.arkbae-track-box h2 {
  margin: 0 0 5px;
  font-size: 24px;
  color: #333;
}
#arkbae-track-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
#arkbae-track-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
}
#arkbae-track-form button {
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: var(--ark-accent);
  color: #fff;
  font-weight: bold;
}
#arkbae-track-result {
  margin-top: 20px;
}

/* List Styles */
.arkbae-track-list-head {
  margin-bottom: 15px;
  font-weight: bold;
  color: #444;
}
.arkbae-track-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.arkbae-track-row:hover {
  border-color: var(--ark-accent);
}
.arkbae-track-row__meta {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.arkbae-track-btn {
  padding: 8px 15px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
  background: rgba(245, 158, 11, 0.2) !important;
  color: #000;
  font-weight: 600;
}

/* Card Styles */
.arkbae-track-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
}
.detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.detail-row:last-of-type {
  border-bottom: 0;
}
.arkbae-track-back,
.arkbae-load-more-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
.arkbae-load-more-btn {
  width: auto;
  background: #f9f9f9;
}

/* Badges */
.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.st-success {
  background: #dcfce7;
  color: #166534;
}
.st-pending {
  background: #fff6e5;
  color: #b45309;
}
.arkbae-track-error {
  padding: 12px;
  border-radius: 10px;
  background: #fff3f3;
  border: 1px solid #ffd1d1;
  color: #d32f2f;
}
.muted {
  font-size: 14px;
  color: #777;
}
code {
  background: #f1f1f1;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Scanner Code */

#ark-hub-wrapper {
  padding: 40px 10px;
  min-height: 100vh;
}
.ark-delivery-wrap {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.mode-toggle-area {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f9f9f9;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.manual-input-box {
  display: none;
  margin: 15px 0;
  gap: 10px;
}
input.ark-manual-field {
  padding: 12px;
  border: 2px solid var(--ark-accent);
  border-radius: 8px;
  font-size: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.btn-submit {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* Details Card */
#ark-info-display {
  margin: 20px 0;
  padding: 20px;
  border-radius: 12px;
  display: none;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.2);
  text-align: left;
}
.info-row {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}
.product-box {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: bold;
  color: #d32f2f;
}

/* List Design */
.delivery-log-section {
  margin-top: 30px;
  text-align: left;
}
.date-divider {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  margin-top: 25px;
  border-radius: 5px;
  font-size: 14px;
}

.log-serial {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 28px;
    height: 28px;
    background-color: var(--ark-secondary);
    border-radius: 3px;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 15px;
}
.log-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #eee;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.log-row:hover {
  background: #f9f9f9;
}
.log-id {
  font-weight: bold;
  color: var(--ark-accent);
  width: 100px;
}
.log-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
}
.log-time {
  color: #888;
  font-size: 12px;
  width: 80px;
  text-align: right;
}
.btn-undo {
  color: #ff4d4d;
  background: none;
  border: 1px solid #ff4d4d;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  margin-left: 10px;
}
.btn-undo:hover {
  background: #ff4d4d;
  color: #fff;
}


/* Search Page */
.search .ark-main{
  padding-top: clamp(40px, 5vw, 60px);

}

.search-no-results .ark-main{
    text-align: center;
}
.search-no-results .ark-main p{
   font-size: 28px;
   font-weight: 700;
}


  /* Panel Container */
        #arkbae-panel-container {
            max-width: 1200px;
            margin: 30px auto;
        }

        /* Access Denied Message */
        .ark-no-access {
            color: red;
            padding: 20px;
            text-align: center;
        }

        /* Search Section */
        .ark-search-box {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.05);
                    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            border: 1px solid #e0e0e0;
        }
        .ark-search-box h3 {
            margin-top: 0;
            color: #333;
            font-size: 18px;
            margin-bottom: 15px;
        }
        #ark_order_search {
            width: 100%;
            padding: 15px;
            font-size: 16px;
            border: 2px solid var(--ark-accent);
            border-radius: 8px;
            outline: none;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
        }

        /* Table Section */
        .ark-table-wrapper {
            overflow-x: auto;
            background: #fff;
            border-radius: 10px;
            -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.05);
                    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #e0e0e0;
        }
        .ark-order-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        .ark-order-table thead tr {
            background: var(--ark-accent);
            color: #fff;
        }
        .ark-order-table th {
            padding: 15px;
        }
        .ark-order-table td {
            padding: 15px;
        }
        .ark-order-row {
            border-bottom: 1px solid #eee;
            -webkit-transition: background 0.3s;
            -o-transition: background 0.3s;
            transition: background 0.3s;
        }
         .ark-order-row td{
          min-width: 130px;
         }
        .ark-empty-msg {
            padding: 40px;
            text-align: center;
            color: #888;
        }

        /* Column Specific Styles */
        .ark-oid { color: var(--ark-accent); }
        .ark-name { font-weight: 600; }
        .ark-dup-warning {
            color: #d63031;
            font-size: 11px;
            font-weight: bold;
            margin-top: 5px;
        }
        .ark-phone-link {
            color: #27ae60;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            border: 1px solid #27ae60;
            padding: 4px 8px;
            border-radius: 4px;
        }
        .ark-item-list { font-size: 13px; font-weight: 700; color: #555; }
        .ark-price { color: #e67e22; }
        .ark-date-input {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .ark-action-cell {
            text-align: right;
            min-width: 80px;
        }
.ark-action-cell .ark-btn{
  min-width: 70px;
}
        .ark-delivery-porduct-list{
          max-width: 220px;
          min-width: 120px;
        }

        /* Buttons */
  
        .ark-confirm { background: #27ae60; color: white; }
        .ark-cancel { background: #d63031; color: white; margin: 5px 5px; margin-right: 0; }



        /* সার্কেল ডিজাইন */
.ark-footer__social-links {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.ark-footer__social-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 35px; /* বৃত্তের আকার */
    height: 35px;
    background-color: var(--ark-secondary); /* ডিফল্ট ব্যাকগ্রাউন্ড */
    color: #ffffff; /* আইকনের রঙ */
    border-radius: 50%; /* বৃত্তাকার */
    font-size: 16px;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* হোভার করলে কালার এবং ডিজাইন পরিবর্তন */
.ark-footer__social-links a:hover {
    background-color: var(--ark-accent); /* হোভার ব্যাকগ্রাউন্ড */
    color: #333333; /* হোভার আইকন কালার */
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px); /* একটু ওপরে উঠবে */
}

/* প্রডাক্ট ফেইড ইন অ্যানিমেশন */
.ark-product-reveal {
    -webkit-animation: arkFadeUp 0.6s ease forwards;
            animation: arkFadeUp 0.6s ease forwards;
    opacity: 0;
}

@-webkit-keyframes arkFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes arkFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

/* লোডার স্টাইল */
#ark-load-more-status {
    padding: 40px 0;
}

.ark-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--ark-accent, #007cba);
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


.ark-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ark-search-overlay--open {
    opacity: 1;
    visibility: visible;
}

.ark-search-overlay__close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #333;
}

.ark-search-overlay__content {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.ark-search-input {
    width: 100%;
    border: none;
    border-bottom: 3px solid #eee;
    font-size: 32px;
    padding: 10px;
    outline: none;
    text-align: center;
    background: transparent;
}

.ark-search-results {
    margin-top: 30px;
    max-height: 60vh;
    overflow-y: auto;
    text-align: left;
}

/* এজাক্স রেজাল্টের সাধারণ স্টাইল */
.ark-ajax-result-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
}
.ark-ajax-result-item img { width: 50px; height: 50px; margin-right: 15px; border-radius: 4px; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .ark-treding-products .ark-container--wide{
    padding: 30px 15px !important;
  }
}
@media (max-width: 992px) {
  .ark-story-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ark-team-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ark-stats-row {
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ark-team-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .ark-about-hero__title {
    font-size: 36px;
  }
    .ark-grid--cats {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ark-search-input{
    font-size: 16px;
  }
}