/* ===== YD Kısmet Tarım — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary colors — agriculture green */
  --primary: #2d7a3a;
  --primary-dark: #1e5c2a;
  --primary-light: #4caf50;
  --primary-50: #e8f5e9;
  --primary-100: #c8e6c9;

  /* Secondary — warm earth */
  --secondary: #f59e0b;
  --secondary-dark: #d97706;

  /* Neutrals */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Functional */
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --success: #22c55e;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Background */
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;

  /* Text */
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-inverse: #ffffff;

  /* Spacing */
  --container: 1280px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition: 0.2s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top .contact-info {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Search bar */
.search-bar {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-bar input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

.search-bar button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 16px;
  background: var(--secondary);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.search-bar button:hover {
  background: var(--secondary-dark);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions a,
.header-actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  transition: var(--transition);
}

.header-actions a:hover,
.header-actions button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.cart-badge {
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  min-width: 18px;
  text-align: center;
}

.mobile-menu-btn {
  display: none !important;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px !important;
}

/* Nav */
.nav {
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px 3px 0 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0;
}

.footer h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  font-size: 14px;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .product-image {
  aspect-ratio: 1;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .no-image {
  color: var(--gray-400);
  font-size: 48px;
}

.product-card .stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.stock-badge.in-stock {
  background: var(--primary-50);
  color: var(--primary);
}

.stock-badge.out-of-stock {
  background: var(--danger-light);
  color: var(--danger);
}

.product-card .product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.product-card .product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-top: auto;
  margin-bottom: 12px;
}

.product-card .product-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  background: white;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}

.form-control::placeholder {
  color: var(--gray-400);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
}

.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ===== SECTION ===== */
.section {
  padding: 60px 0;
}

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

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-card .category-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: white;
}

.category-card h3 {
  font-size: 15px;
  font-weight: 600;
}

/* ===== BRANDS ===== */
.brands-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-tag {
  padding: 14px 28px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  transition: var(--transition);
}

.brand-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== FILTER SIDEBAR ===== */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 140px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.filter-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.filter-section {
  margin-bottom: 24px;
}

.filter-section h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.filter-section .form-control {
  padding: 10px 14px;
  font-size: 13px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.product-gallery {
  position: relative;
}

.product-gallery .main-image {
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery .thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-gallery .thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
  border-color: var(--primary);
}

.product-detail .product-info h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-detail .product-codes {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.product-detail .product-codes span {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: 50px;
}

.product-detail .price-tag {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.product-detail .price-tag small {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-200);
  background: white;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}

.quantity-selector button:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.quantity-selector button:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quantity-selector button:hover {
  background: var(--gray-100);
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  border: 2px solid var(--gray-200);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--gray-700);
  width: 40%;
  background: var(--gray-50);
}

/* ===== CART ===== */
.cart-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  padding: 40px 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cart-item .item-image {
  width: 100px;
  height: 100px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gray-300);
}

.cart-item .item-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item .item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.cart-item .remove-btn {
  color: var(--danger);
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-item .remove-btn:hover {
  background: var(--danger-light);
}

.cart-summary {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 160px;
  height: fit-content;
}

.cart-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.cart-summary .summary-total {
  border-top: 2px solid var(--gray-200);
  margin-top: 12px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 700;
}

.cart-summary .summary-total span:last-child {
  color: var(--primary);
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  width: 100%;
  max-width: 440px;
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

.auth-card .auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-card .auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== ACCOUNT PAGES ===== */
.account-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 40px 0;
}

.account-sidebar {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
}

.account-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.account-sidebar a:hover {
  background: var(--gray-100);
}

.account-sidebar a.active {
  background: var(--primary-50);
  color: var(--primary);
  font-weight: 600;
}

.account-content {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.account-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

/* Order cards */
.order-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.order-card:hover {
  border-color: var(--primary-light);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-header .order-id {
  font-weight: 700;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-processing {
  background: #dbeafe;
  color: #1e40af;
}

.status-shipped {
  background: #e0e7ff;
  color: #3730a3;
}

.status-completed {
  background: var(--primary-50);
  color: var(--primary-dark);
}

.status-cancelled {
  background: var(--danger-light);
  color: var(--danger);
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ===== ADMIN PANEL ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--gray-900);
  color: white;
  padding: 24px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar .admin-logo {
  font-size: 18px;
  font-weight: 800;
  padding: 0 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.admin-sidebar .admin-logo span {
  color: var(--secondary);
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-sidebar a.active {
  background: var(--primary);
  color: white;
}

.admin-content {
  padding: 30px;
  background: var(--bg-secondary);
}

.admin-content h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}


/* Admin table */
.admin-table-container {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 2px solid var(--gray-100);
}

.admin-table-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-100);
}

.admin-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.admin-table tr:hover td {
  background: var(--gray-50);
}

.admin-table .actions {
  display: flex;
  gap: 8px;
}

.admin-table .actions button {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.action-edit {
  background: var(--primary-50);
  color: var(--primary);
}

.action-edit:hover {
  background: var(--primary);
  color: white;
}

.action-delete {
  background: var(--danger-light);
  color: var(--danger);
}

.action-delete:hover {
  background: var(--danger);
  color: white;
}

/* Admin form */
.admin-form {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.admin-form h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.admin-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form .form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Dynamic attributes */
.dynamic-attrs {
  margin-top: 20px;
}

.dynamic-attrs h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.attr-row {
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.attr-row input {
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
}

.attr-row input:focus {
  border-color: var(--primary);
}

.attr-row .remove-attr {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--danger-light);
  color: var(--danger);
  font-size: 18px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attr-row .remove-attr:hover {
  background: var(--danger);
  color: white;
}

/* ===== LOADING ===== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  font-size: 16px;
  color: var(--text-secondary);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: var(--primary-50);
  color: var(--primary-dark);
  border: 1px solid var(--primary-100);
}

.alert-error {
  background: var(--danger-light);
  color: var(--danger);
  border: 1px solid #fecaca;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination button {
  padding: 8px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--gray-400);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.empty-state .empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  margin-bottom: 24px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-with-sidebar {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .cart-page {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: -280px;
    z-index: 1000;
    transition: var(--transition);
    height: 100vh;
    width: 260px;
  }

  .admin-sidebar.open {
    left: 0;
  }

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

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-main {
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-bar {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .header-actions a:not([href='/sepet']):not([href='/giris']):not([href='/kayit']) {
    display: none;
  }

  .nav {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav.open {
    max-height: 600px;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
  }

  .nav a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .auth-card {
    padding: 32px 20px;
  }

  .admin-form .form-row,
  .admin-form .form-row-3 {
    grid-template-columns: 1fr;
  }

  .admin-table-container {
    overflow-x: auto;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 4px;
  }

  .header-actions a,
  .header-actions button {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section {
    padding: 40px 0;
  }

  .product-card .product-price {
    font-size: 16px;
  }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: var(--primary);
}

.toast-error {
  background: var(--danger);
}

.toast-warning {
  background: var(--secondary);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
  color: var(--text-secondary);
}

.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-700);
}

.contact-card p {
  font-size: 15px;
  color: var(--text);
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: #25d366;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  margin-top: 20px;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-cta:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
}

/* ===== EXCEL UPLOAD ===== */
.excel-upload-area {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
}

.excel-upload-area h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin: 20px 0;
}

.upload-zone:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}

.upload-zone .upload-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.upload-zone p {
  color: var(--text-secondary);
  font-size: 14px;
}

.upload-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.upload-result .result-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.upload-result .stat {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.excel-format-info {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.excel-format-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.excel-format-info table {
  width: 100%;
  border-collapse: collapse;
}

.excel-format-info th,
.excel-format-info td {
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  text-align: left;
  font-size: 13px;
}

.excel-format-info th {
  background: var(--gray-50);
  font-weight: 600;
}

/* ===== NAV MOBILE OPEN ===== */
.nav.mobile-open {
  max-height: 600px;
}

/* ===== WHY US SECTION (Homepage) ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card .icon {
  width: 72px;
  height: 72px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.checkout-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.checkout-section {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 24px;
}

.checkout-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.footer-socials a {
  transition: var(--transition);
  filter: grayscale(1);
  opacity: 0.7;
}

.footer-socials a:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.2);
}

.form-row,
.form-row-2,
.form-row-3 {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 768px) {

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT GRID & CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 85%;
  /* 4:3 Aspect Ratio */
  background: var(--gray-50);
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.featured {
  background: var(--warning);
  color: var(--warning-800);
}

.product-badge.out-of-stock {
  background: var(--gray-200);
  color: var(--gray-700);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-sku {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
  display: block;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.product-price.ask {
  font-size: 14px;
  color: var(--gray-600);
}

.stock-status {
  font-size: 12px;
  font-weight: 600;
}

.stock-status.in {
  color: #10b981;
}

.stock-status.out {
  color: var(--danger);
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-price {
    font-size: 15px;
  }
}

/* ===== ADMIN LAYOUT & UI ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--gray-50);
}

.admin-sidebar {
  background: var(--gray-800);
  color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 32px;
}

.admin-logo span {
  color: var(--secondary);
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-sidebar a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: var(--primary);
  color: white;
}

.admin-content {
  padding: 40px;
}

.admin-content h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Dashboard Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow);
}

.stat-card.green {
  background: linear-gradient(135deg, #2d7a3a, #4caf50);
}

.stat-card.blue {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.stat-card.yellow {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.stat-card.red {
  background: linear-gradient(135deg, #991b1b, #ef4444);
}

.stat-card .stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  /* Slightly transparent white for labels */
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  /* pure white for values */
}

.admin-table-container.scrollable {
  max-height: 400px;
  overflow-y: auto;
}

.admin-table-container.scrollable table thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--gray-50);
}

.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-50);
  font-size: 14px;
}

.admin-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover {
  background: var(--gray-50);
}

/* Status Badges */
.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-shipped {
  background: #dcfce7;
  color: #166534;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* Actions */
.actions {
  display: flex;
  gap: 8px;
}

.actions button {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.action-edit {
  background: var(--primary-50);
  color: var(--primary);
}

.action-edit:hover {
  background: var(--primary);
  color: white;
}

.action-delete {
  background: var(--danger-light);
  color: var(--danger);
}

.action-delete:hover {
  background: var(--danger);
  color: white;
}

/* Admin Form */
.admin-form {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  border: 1px solid var(--gray-100);
}

/* Buttons System */
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

@media (max-width: 1024px) {
  .admin-sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: 0.3s ease;
  }

  .admin-sidebar.open {
    left: 0;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }
}