*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f9fafb;
  color: #0f172a;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
}

.nav a:hover {
  color: #111827;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart {
  position: relative;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 999px;
}

/* Mobile menu button hidden on desktop */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
}

/* HERO */
.hero {
  padding: 40px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-secondary:hover {
  background: #d1d5db;
}

.hero-trust {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 8px;
}

/* HERO IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.hero-card-info {
  margin-top: 12px;
}

.hero-card-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-card-info p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* SECTIONS */
.section {
  padding: 24px 0 32px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 1.4rem;
}

.section-header p {
  font-size: 0.9rem;
  color: #6b7280;
}

.link-view-all {
  font-size: 0.9rem;
  color: #1d4ed8;
}

/* CATEGORIES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
}

.category-img {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fee2e2, #bfdbfe);
  margin-bottom: 10px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f97316;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
}

.product-title {
  font-size: 0.95rem;
}

.product-price {
  font-size: 0.9rem;
  display: flex;
  gap: 6px;
  align-items: center;
}

.price-current {
  font-weight: 600;
}

.price-old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.btn-add-cart {
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  background: #111827;
  color: #ffffff;
}

/* NEWSLETTER & FOOTER */
.newsletter {
  padding: 32px 0;
  background: #111827;
  color: #ffffff;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  min-width: 220px;
}

.footer {
  padding: 16px 0 24px;
  background: #020617;
  color: #9ca3af;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }
}

/* PAGE HERO (SHOP TITLE) */
.page-hero {
  padding: 24px 0 8px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.page-hero h1 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.page-hero p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* NAV ACTIVE LINK */
.nav-active {
  color: #111827;
  font-weight: 600;
}

/* SHOP LAYOUT */
.shop {
  padding: 20px 0 32px;
}

.shop-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

/* SIDEBAR */
.shop-sidebar {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
  height: fit-content;
  position: sticky;
  top: 80px;
}

.filter-block + .filter-block {
  margin-top: 18px;
}

.filter-block h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.filter-block ul {
  list-style: none;
}

.filter-block li {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #4b5563;
}

.filter-block input[type="checkbox"] {
  margin-right: 6px;
}

/* Price range */
.filter-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-price input {
  width: 80px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}

/* Size tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-tags button {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-tags button:hover {
  background: #e5e7eb;
}

/* Color dots */
.color-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
}

.dot-black { background: #111827; }
.dot-white { background: #ffffff; }
.dot-red   { background: #ef4444; }
.dot-blue  { background: #3b82f6; }
.dot-green { background: #22c55e; }

.btn-full {
  width: 100%;
  margin-top: 10px;
}

/* SHOP CONTENT */
.shop-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TOPBAR */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-results {
  font-size: 0.9rem;
  color: #6b7280;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-search input {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  min-width: 180px;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.shop-sort select {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

/* PAGINATION */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.page-btn {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
}

.page-btn-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.page-btn-disabled {
  opacity: 0.5;
  cursor: default;
}

.page-dots {
  font-size: 0.9rem;
  color: #6b7280;
}

/* RESPONSIVE SHOP */
@media (max-width: 900px) {
  .shop-inner {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    order: 2;
  }

  .shop-content {
    order: 1;
  }

  .shop-topbar {
    align-items: flex-start;
  }

  .shop-controls {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .shop-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search input,
  .shop-sort select {
    width: 100%;
  }
}
/* PRODUCT PAGE */
.product-hero {
  padding-bottom: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #6b7280;
}

.breadcrumb a {
  color: #4b5563;
}

.breadcrumb a:hover {
  color: #111827;
}

.product-page {
  padding: 16px 0 32px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* GALLERY */
.product-gallery {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.product-main-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.product-main-image img {
  width: 100%;
  height: auto;
}

.product-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.thumb {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 2px;
  background: transparent;
  cursor: pointer;
}

.thumb img {
  border-radius: 10px;
}

.thumb-active {
  border-color: #111827;
}

/* PRODUCT INFO */
.product-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.product-title-lg {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.product-rating {
  font-size: 0.9rem;
  color: #f59e0b;
}

.product-rating span {
  color: #6b7280;
  margin-left: 6px;
}

.product-sku {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* PRICE BLOCK */
.product-price-block {
  margin-bottom: 10px;
}

.product-price-lg {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current-lg {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-old-lg {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.price-offer {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 500;
}

.product-stock {
  font-size: 0.9rem;
  color: #16a34a;
}

.product-short-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 10px 0 14px;
}

/* VARIANTS */
.product-variant {
  margin-bottom: 14px;
}

.product-variant h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.variant-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-color {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
}

.variant-color.active {
  border-color: #111827;
  background: #e5e7eb;
}

.variant-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.variant-size {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
}

.variant-size.active {
  border-color: #111827;
  background: #e5e7eb;
}

.size-note {
  font-size: 0.8rem;
  color: #2563eb;
  margin-top: 4px;
}

/* QUANTITY + ACTIONS */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
}

.qty-group {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.qty-btn {
  background: #f9fafb;
  border: none;
  padding: 6px 10px;
  font-size: 1rem;
  cursor: pointer;
}

.qty-group input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  font-size: 0.9rem;
  padding: 6px 0;
}

.btn-main-action {
  padding-left: 18px;
  padding-right: 18px;
}

/* HIGHLIGHTS */
.product-highlights {
  margin-top: 6px;
  list-style: none;
  font-size: 0.85rem;
  color: #4b5563;
}

.product-highlights li {
  margin-bottom: 3px;
}

/* TABS */
.product-tabs {
  margin-top: 16px;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

.tab-headers {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tab-header {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.85rem;
  cursor: pointer;
}

.tab-header.tab-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.tab-body {
  font-size: 0.9rem;
  color: #4b5563;
}

.tab-body ul {
  margin-top: 6px;
  padding-left: 18px;
}

/* RESPONSIVE PRODUCT PAGE */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-info {
    padding: 14px;
  }

  .product-title-lg {
    font-size: 1.4rem;
  }

  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main-action {
    width: 100%;
    justify-content: center;
  }
}
/* CART PAGE */
.cart-page {
  padding: 16px 0 32px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.cart-items {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.cart-header-row,
.cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  gap: 8px;
  align-items: center;
}

.cart-header-row {
  font-size: 0.85rem;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.cart-row {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-product img {
  border-radius: 12px;
}

.cart-product h3 {
  font-size: 0.95rem;
}

.cart-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.cart-remove {
  margin-top: 4px;
  border: none;
  background: none;
  color: #ef4444;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-price,
.cart-subtotal {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-qty {
  display: flex;
  align-items: center;
}

/* CONTINUE LINK */
.cart-continue {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #1d4ed8;
}

/* CART SUMMARY */
.cart-summary {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.cart-summary h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-summary select {
  width: 100%;
  margin-top: 4px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 12px;
  font-weight: 600;
  font-size: 1rem;
}

.cart-checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 8px;
}

.summary-note {
  font-size: 0.8rem;
  color: #6b7280;
}

/* CHECKOUT PAGE */
.checkout-page {
  padding: 16px 0 32px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.checkout-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.checkout-block + .checkout-block {
  margin-top: 16px;
}

.checkout-block h2 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* FORM FIELDS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-field {
  margin-bottom: 10px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  resize: vertical;
}

/* PAYMENT */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.payment-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 6px;
}

.checkout-place-btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.checkout-back {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: #1d4ed8;
}

/* CHECKOUT SUMMARY */
.checkout-summary {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.checkout-summary h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.summary-items {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
  padding-bottom: 6px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-product img {
  border-radius: 12px;
}

.summary-product p {
  font-size: 0.9rem;
}

.summary-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* RESPONSIVE CART + CHECKOUT */
@media (max-width: 900px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary {
    order: 2;
  }

  .cart-items,
  .checkout-form {
    order: 1;
  }

  .cart-header-row,
  .cart-row {
    grid-template-columns: 1.8fr 0.9fr 1.2fr 0.9fr;
  }
}

@media (max-width: 600px) {
  .cart-header-row {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cart-price,
  .cart-subtotal {
    display: flex;
    justify-content: space-between;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ADMIN PAGE */
.admin-header {
  border-bottom: 1px solid #e5e7eb;
}

.logo-admin-tag {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  margin-left: 4px;
}

.admin-user {
  font-size: 0.85rem;
  color: #6b7280;
}

.admin-page {
  padding: 16px 0 32px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.admin-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.admin-block + .admin-block {
  margin-top: 16px;
}

.admin-block h2 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* ADMIN SIDEBAR */
.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-side-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
}

.admin-side-block h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.image-upload-box {
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #4b5563;
}

.image-upload-box input[type="file"] {
  margin-top: 6px;
  font-size: 0.8rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.field-helper {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* ADMIN FORM OVERRIDES */
.admin-form .form-field select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  background: #ffffff;
}

.admin-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ADMIN PREVIEW CARD */
.admin-preview-card {
  margin-top: 6px;
}

/* RESPONSIVE ADMIN */
@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    order: 2;
  }

  .admin-form {
    order: 1;
  }
}



