:root {
  --primary: #ff4500;
  --primary-light: #ff6a00;
  --gold: #ffd700;
  --lime: #84cc16;
  --blue: #38bdf8;
  --dark: #111827;
  --white: #ffffff;
  --bg: #f4f4f4;
  --text: #111;
  --muted: #666;
  --danger: #c62828;
  --shadow: 0 5px 16px rgba(0,0,0,0.08);
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
}

/* TYPO */
h2,
.page-title {
  text-align: center;
}

/* =========================
   AUTH
========================= */
.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #8b0000, #d4af37);
}

.auth-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.auth-logo img {
  width: 80px;
}

.auth-title {
  margin-bottom: 20px;
}

.auth-error {
  background: #ffe0e0;
  color: #b00020;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* =========================
   FORMS
========================= */
.form-input,
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

textarea {
  min-height: 90px;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  height: 72px;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.brand-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 6px;
}

.brand-title {
  font-weight: bold;
}

.top-nav a {
  color: #fff;
  margin-left: 14px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 230px;
  height: calc(100vh - 72px);
  background: var(--dark);
  padding: 20px;
}

.sidebar h3 {
  color: var(--gold);
}

.sidebar a {
  display: block;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 8px;
}

.sidebar a:hover {
  background: var(--primary);
}

/* =========================
   CONTENT
========================= */
.content {
  margin-left: 230px;
  padding: 100px 25px;
}

/*.footer {
  margin-left: 230px;
  padding: 15px;
  text-align: center;
  background: #111;
  color: #fff;
} */

/* =========================
   CARD
========================= */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
/* =========================
   BUTTONS
========================= */
.btn,
.btn-login {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.btn-login {
  width: 100%;
  background: #8b0000;
  color: #fff;
}

.btn-login:hover {
  background: #a00000;
}

.btn-cart {
  background: var(--lime);
  color: #000;
}

.btn-checkout {
  background: var(--gold);
  color: #000;
}

.btn-share {
  background: var(--blue);
  color: #000;
}

.btn-success {
  background: var(--primary);
  color: var(--gold);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-small {
  padding: 7px 10px;
  font-size: 13px;
}

/* =========================
   TABLES
========================= */
.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* =========================
   CART
========================= */
.cart-card,
.order-details-card {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
}

.qty-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.qty-input {
  width: 70px;
}

.cart-summary {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-total {
  font-size: 18px;
}

/* =========================
   CHECKOUT
========================= */
.checkout-card {
  max-width: 950px;
  margin: 40px auto;
  padding: 25px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.checkout-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.checkout-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.checkout-form .btn-checkout {
  width: 100%;
  margin-top: 10px;
}

.success-card {
  text-align: center;
}
.delivery-note {
  background: #fff3cd;
  color: #856404;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}
/* =========================
   STATUS BADGES
========================= */
.status-badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}

.status-rejected {
  background: #f8d7da;
  color: #721c24;
}

.muted-text {
  color: #777;
  font-size: 13px;
}

/* =========================
   ORDERS / CLAIMS
========================= */
.orders-card,
.claims-card {
  max-width: 1150px;
  margin: 40px auto;
  padding: 25px;
}

.orders-card small,
.claims-card small {
  color: var(--muted);
}

.order-status-row,
.section-header,
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* =========================
   DASHBOARD
========================= */
.dashboard-wrap {
  max-width: 1100px;
  margin: 40px auto;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}

.stat-card {
  background: #fff;
  min-height: 95px;
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  color: var(--primary);
}

.dashboard-card {
  max-width: 100%;
  margin: 0 auto 25px;
  padding: 25px;
}

.copy-box {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  align-items: center;
}

.copy-box .form-input {
  margin: 0;
}
/* =========================
   MERCHANT FORMS
========================= */
.reward-container,
.rewards-container {
  max-width: 1000px;
  margin: 40px auto;
}

.reward-form-card,
.reward-table-card {
  margin-bottom: 25px;
}

.product-form-card {
  max-width: 650px;
  margin: 40px auto;
  padding: 28px;
}

.product-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
}

.product-submit {
  margin-top: 16px;
  width: 100%;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* =========================
   SHOP
========================= */
.shop-hero {
  max-width: 1100px;
  margin: 35px auto 20px;
  padding: 35px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3d00, #ffd000);
  color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.shop-hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
}

.shop-hero p {
  margin: 0;
  max-width: 650px;
  font-size: 16px;
  font-weight: 600;
}

.shop-container {
  max-width: 1100px;
  margin: 0 auto 45px;
}

.category-section {
  margin-top: 30px;
}

.category-header {
  margin-bottom: 16px;
}

.category-header h2 {
  margin: 0;
  text-align: left;
}

.category-header span {
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.13);
}

.product-img-wrap {
  width: 100%;
  height: 170px;
  background: #f3f3f3;
}

.product-img-wrap img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
  padding: 8px;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info small {
  color: #777;
}

.product-info h3 {
  margin: 8px 0;
  font-size: 16px;
  min-height: 42px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.product-actions form,
.product-actions .btn {
  flex: 1;
}

.product-actions .btn {
  width: 100%;
}

.empty-shop {
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;
  text-align: center;
}

/* =========================
   REWARDS
========================= */
.points-box {
  max-width: 600px;
  margin: 0 auto 25px;
  text-align: center;
  font-weight: bold;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reward-card {
  text-align: center;
  padding: 20px;
}

.reward-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.reward-card h3 {
  margin: 10px 0 5px;
}

.reward-card p {
  margin: 0 0 10px;
}

.reward-disabled {
  background: #eee;
  color: #888;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
}

/* =========================
   PRODUCT DETAIL
========================= */
.product-detail-card {
  max-width: 1000px;
  margin: 40px auto;
  padding: 28px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.product-detail-image {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.product-detail-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-detail-info small {
  color: #777;
  font-weight: bold;
}

.product-detail-info h1 {
  margin: 12px 0;
  font-size: 32px;
}

.product-detail-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
}

.product-detail-note {
  color: #555;
  margin-bottom: 20px;
}

.product-detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-detail-actions .btn {
  flex: 1;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-hero,
  .shop-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 900px) {
  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .content,
  .footer {
    margin-left: 0;
  }

  .checkout-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-actions,
  .cart-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  .content {
    padding-top: 110px;
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-hero h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .dashboard-stats,
  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .copy-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .brand-title {
    font-size: 1rem;
  }

  .top-nav a {
    margin-left: 8px;
    font-size: 13px;
  }
}
.home-hero,
.home-section,
.seller-callout {
  max-width: 1100px;
  margin: 35px auto;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.home-hero-text {
  background: linear-gradient(135deg, #ff4500, #ffd700);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-badge {
  display: inline-block;
  background: #111;
  color: #ffd700;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 12px;
}

.home-hero-text h1 {
  font-size: 40px;
  margin: 10px 0;
}

.home-hero-text p {
  font-size: 17px;
  font-weight: 600;
}

.hero-actions {
  margin-top: 20px;
}

.home-hero-banner {
  background: #fff;
  border-radius: 20px;
  min-height: 300px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.home-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.banner-placeholder {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #777;
  background: #f3f3f3;
}

.video-placeholder {
  height: 360px;
  background: #111827;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-category-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.how-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.how-card strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.seller-callout {
  background: #476320;
  color: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .how-grid,
  .home-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-hero,
  .home-section,
  .seller-callout {
    margin-left: 15px;
    margin-right: 15px;
  }

  .home-hero-text h1 {
    font-size: 30px;
  }

  .how-grid,
  .home-category-grid {
    grid-template-columns: 1fr;
  }
}
.about-hero {
  max-width: 1100px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
  box-shadow: var(--shadow);
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.about-section h2 {
  margin-bottom: 10px;
}

.about-section p {
  line-height: 1.6;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.about-img {
  height: 140px;
  background: #f3f3f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #777;
}

.about-cta {
  background: #111827;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
}

.about-cta h2 {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-hero {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.contact-hero,
.contact-container {
  max-width: 1100px;
  margin: 35px auto;
}

.contact-hero {
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary);
  font-weight: bold;
}

.contact-textarea {
  min-height: 140px;
}

.contact-submit {
  width: 100%;
}

.map-placeholder {
  margin-top: 25px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #777;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.blog-hero,
.blog-container {
  max-width: 1100px;
  margin: 35px auto;
}

.blog-hero {
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
  text-align: center;
  box-shadow: var(--shadow);
}

.blog-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.blog-img {
  height: 160px;
  background: #f3f3f3;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.blog-card h3 {
  margin: 10px 0;
}

.blog-card p {
  flex: 1;
  color: #555;
}

.blog-cta {
  margin-top: 30px;
  padding: 35px;
  border-radius: 20px;
  background: #111827;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.blog-content-box {
  min-height: 260px;
}

.blog-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.blog-view-card {
  max-width: 900px;
  margin: 40px auto;
  padding: 35px;
}

.blog-view-card h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.blog-view-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.blog-content {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}
.youtube-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 25px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.youtube-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: #ffd700;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  right: 0;
  width: 250px;
  background: #111827;
  z-index: 9999;
  display: none;
  flex-direction: column;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  }

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: bold;
}

.mobile-menu a:hover {
  background: var(--primary);
  color: var(--gold);
}
.site-footer {
  margin-left: 5px;
  background: #5c5858;
  color: #fff;
  padding: 35px 25px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 35px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}

.footer-brand p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: #f1f1f1;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffd700;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: bold;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-bottom {
    background: #120202;
  margin-top: 30px;
  padding: 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
}

@media (max-width: 768px) {
  .site-footer {
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-powered {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.footer-powered:hover {
  color: #fff;
  text-decoration: underline;
}
.legal-page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.legal-card {
  padding: 35px;
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: 32px;
}

.legal-card h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary);
}

.legal-card p,
.legal-card li {
  line-height: 1.7;
  color: #444;
}

.legal-card ul {
  padding-left: 20px;
}
.seller-hero,
.seller-page {
  max-width: 1100px;
  margin: 35px auto;
}

.seller-hero {
  padding: 45px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
  text-align: center;
  box-shadow: var(--shadow);
}

.seller-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.seller-hero p {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 17px;
  font-weight: 600;
}

.seller-card {
  margin-bottom: 25px;
}

.seller-requirements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.seller-requirements div {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.seller-requirements strong {
  display: block;
  color: var(--primary);
  font-size: 34px;
  margin-bottom: 8px;
}

.seller-requirements span {
  color: #555;
  font-weight: bold;
}

.seller-card ul {
  line-height: 1.8;
}

.seller-cta {
  background: #111827;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .seller-hero,
  .seller-page {
    margin-left: 15px;
    margin-right: 15px;
  }

  .seller-requirements {
    grid-template-columns: 1fr;
  }
}
.dealer-hero {
  max-width: 1100px;
  margin: 35px auto;
  padding: 45px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
  text-align: center;
  box-shadow: var(--shadow);
}

.dealer-hero h1 {
  font-size: 38px;
  margin: 10px 0;
}

.dealer-hero p {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .dealer-hero {
    margin-left: 15px;
    margin-right: 15px;
  }

  .dealer-hero h1 {
    font-size: 30px;
  }
}.shop-filter-card {
  max-width: 1100px;
  margin: 20px auto;
  padding: 18px;
}

.shop-filter-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.shop-filter-form .form-input {
  margin: 0;
}

@media (max-width: 768px) {
  .shop-filter-card {
    margin-left: 15px;
    margin-right: 15px;
  }

  .shop-filter-form {
    grid-template-columns: 1fr;
  }

  .shop-filter-form .btn {
    width: 100%;
  }
}
.clickable-category {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.clickable-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #ff4500, #ffd700);
  color: #111;
}