* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  width: 100%;
  background: #593558;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.search-box {
  width: 45%;
}

.search-box input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #ddc3c3;
}

/* ================= HERO ================= */

.hero {
  width: 100%;
  height: 500px;
  background: linear-gradient(to right, #593558, #8d5f8c);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.hero-content button {
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  background: white;
  color: #593558;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content button:hover {
  transform: scale(1.05);
}

/* ================= SECTION ================= */

.section {
  padding: 60px 5%;
}

.section-title {
  font-size: 34px;
  color: #593558;
  margin-bottom: 35px;
}

/* ================= CATEGORIES ================= */

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-card i {
  font-size: 40px;
  color: #8d5f8c;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #333;
  font-size: 18px;
}

/* ================= PRODUCTS ================= */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 20px;
}

.sku {
  color: gray;
  margin-bottom: 18px;
}

.product-info button {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.product-info button:hover {
  background: #8d5f8c;
}

.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #593558;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ================= FOOTER ================= */

.footer {
  background: #593558;
  color: white;
  padding: 60px 5%;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.footer p {
  margin-bottom: 10px;
  color: #ddd;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #8d5f8c;
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 45px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .search-box {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .search-box {
    width: 100%;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content button {
    width: 100%;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .category-card {
    padding: 20px 10px;
  }

  .category-card i {
    font-size: 30px;
  }

  .category-card h3 {
    font-size: 14px;
  }
}
/* CATEGORY PAGE */

.category-banner {
  height: 250px;
  background: linear-gradient(to right, #593558, #8d5f8c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.category-banner h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.category-page {
  display: flex;
  gap: 30px;
  padding: 50px 5%;
}

/* FILTERS */

.filters {
  width: 250px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  height: fit-content;
}

.filters h2 {
  margin-bottom: 25px;
  color: #593558;
}

.filter-box {
  margin-bottom: 30px;
}

.filter-box h3 {
  margin-bottom: 15px;
}

.filter-box label {
  display: block;
  margin-bottom: 10px;
  color: #555;
}

/* PRODUCTS AREA */

.category-products {
  flex: 1;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.top-bar select {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .category-page {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .category-banner h1 {
    font-size: 35px;
  }
}

/* PRODUCT DETAILS */

.product-details {
  display: flex;
  gap: 50px;
  padding: 60px 5%;
  background: white;
}

.product-gallery {
  flex: 1;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  height: 500px;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.thumbnail-images img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

.product-content {
  flex: 1;
}

.product-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #333;
}

.product-sku {
  color: gray;
  margin-bottom: 20px;
}

.product-desc {
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.product-features h3 {
  margin-bottom: 15px;
  color: #593558;
}

.product-features ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.product-features li {
  margin-bottom: 10px;
  color: #444;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.quantity-box button {
  width: 40px;
  height: 40px;
  border: none;
  background: #593558;
  color: white;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
}

.quantity-box input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.product-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.cart-btn,
.buy-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn {
  background: #593558;
  color: white;
}

.buy-btn {
  background: #8d5f8c;
  color: white;
}

.cart-btn:hover,
.buy-btn:hover {
  transform: translateY(-3px);
}

.amazon-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #ff9900;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.amazon-btn i {
  margin-right: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .product-details {
    flex-direction: column;
  }

  .main-image {
    height: 350px;
  }

  .product-content h1 {
    font-size: 32px;
  }

  .product-buttons {
    flex-direction: column;
  }
}

/* AUTH PAGE */

.auth-section {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5%;
}

.auth-container {
  width: 100%;
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-left {
  flex: 1;
  background: linear-gradient(to right, #593558, #8d5f8c);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.auth-left p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.auth-left img {
  width: 250px;
}

.auth-right {
  flex: 1;
  padding: 60px;
}

.auth-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.auth-tabs button {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: #eee;
  cursor: pointer;
  font-weight: bold;
}

.active-tab {
  background: #593558 !important;
  color: white;
}

.auth-form h2 {
  margin-bottom: 30px;
  color: #593558;
}

.input-box {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.input-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.input-box input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
}

.remember-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-box a {
  color: #593558;
  text-decoration: none;
}

.auth-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-btn:hover {
  background: #8d5f8c;
}

.register-form {
  margin-top: 50px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .auth-container {
    flex-direction: column;
  }

  .auth-left,
  .auth-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .auth-left {
    padding: 40px;
  }

  .auth-right {
    padding: 40px 25px;
  }

  .auth-left h1 {
    font-size: 35px;
  }
}
/* CART PAGE */

.cart-page {
  display: flex;
  gap: 30px;
  padding: 60px 5%;
}

.cart-items {
  flex: 2;
}

.cart-items h2 {
  margin-bottom: 30px;
  color: #593558;
}

.cart-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cart-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-info {
  flex: 1;
}

.cart-info h3 {
  margin-bottom: 10px;
}

.cart-info p {
  color: gray;
  margin-bottom: 15px;
}

.cart-price {
  font-size: 24px;
  font-weight: bold;
  color: #593558;
}

/* CHECKOUT */

.checkout-box {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.checkout-box h2 {
  margin-bottom: 25px;
  color: #593558;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #555;
}

.total {
  font-size: 22px;
  font-weight: bold;
  color: #593558;
}

.coupon-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px 0;
}

.apply-btn,
.checkout-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.apply-btn {
  background: #ddd;
  margin-bottom: 15px;
}

.checkout-btn {
  background: #593558;
  color: white;
}

.checkout-btn:hover {
  background: #8d5f8c;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cart-page {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cart-card {
    flex-direction: column;
    text-align: center;
  }

  .cart-card img {
    width: 100%;
    height: 250px;
  }
}

/* DASHBOARD */

.dashboard {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.dashboard-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.dashboard-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.dashboard-sidebar ul {
  list-style: none;
}

.dashboard-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.dashboard-sidebar ul li:hover,
.dashboard-sidebar ul .active {
  background: #8d5f8c;
}

.dashboard-sidebar ul li i {
  font-size: 18px;
}

/* MAIN */

.dashboard-main {
  flex: 1;
  padding: 40px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.dashboard-top h1 {
  color: #593558;
}

.dashboard-top button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.dashboard-top button:hover {
  background: #8d5f8c;
}

/* CARDS */

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.dash-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dash-card i {
  font-size: 40px;
  color: #8d5f8c;
  margin-bottom: 20px;
}

.dash-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #333;
}

.dash-card p {
  color: gray;
}

/* TABLE */

.recent-orders {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.table-header {
  margin-bottom: 25px;
}

.table-header h2 {
  color: #593558;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 18px;
  text-align: left;
}

table th {
  background: #f5f5f5;
}

.status {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.shipped {
  background: #d4edda;
  color: #155724;
}

.pending {
  background: #fff3cd;
  color: #856404;
}

.delivered {
  background: #cce5ff;
  color: #004085;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .dashboard {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboard-main {
    padding: 25px;
  }

  .dashboard-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

/* ADMIN DASHBOARD */

.admin-dashboard {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.admin-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.admin-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.admin-sidebar ul {
  list-style: none;
}

.admin-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-sidebar ul li:hover,
.admin-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.admin-main {
  flex: 1;
  padding: 40px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.admin-top h1 {
  color: #593558;
}

.admin-top button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* CARDS */

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.admin-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.admin-card i {
  font-size: 40px;
  color: #8d5f8c;
  margin-bottom: 20px;
}

.admin-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.admin-card p {
  color: gray;
}

/* TABLE */

.admin-table {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.table-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.table-top input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 250px;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 18px;
  text-align: left;
}

.admin-table th {
  background: #f5f5f5;
}

.admin-table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.edit-btn,
.delete-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
}

.edit-btn {
  background: #593558;
}

.delete-btn {
  background: #dc3545;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .admin-dashboard {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .admin-main {
    padding: 25px;
  }

  .table-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .table-top input {
    width: 100%;
  }

  .admin-table table {
    display: block;
    overflow-x: auto;
  }
}

/* ORDERS PAGE */

.orders-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.orders-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.orders-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.orders-sidebar ul {
  list-style: none;
}

.orders-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.orders-sidebar ul li:hover,
.orders-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.orders-main {
  flex: 1;
  padding: 40px;
}

.orders-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.orders-top h1 {
  color: #593558;
}

.orders-top button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* FILTERS */

.orders-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.orders-filters input,
.orders-filters select {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

/* TABLE */

.orders-table {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.orders-table table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 18px;
  text-align: left;
}

.orders-table th {
  background: #f5f5f5;
}

.view-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .orders-page {
    flex-direction: column;
  }

  .orders-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .orders-main {
    padding: 25px;
  }

  .orders-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .orders-filters {
    flex-direction: column;
  }

  .orders-table table {
    display: block;
    overflow-x: auto;
  }
}

/* PROFILE PAGE */

.profile-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.profile-sidebar {
  width: 300px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.profile-user {
  text-align: center;
  margin-bottom: 50px;
}

.profile-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.profile-user h3 {
  margin-bottom: 8px;
}

.profile-sidebar ul {
  list-style: none;
}

.profile-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-sidebar ul li:hover,
.profile-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.profile-main {
  flex: 1;
  padding: 40px;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.profile-header h1 {
  color: #593558;
}

.profile-header button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* PROFILE CARD */

.profile-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  margin-bottom: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.profile-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.profile-row div {
  flex: 1;
}

.profile-row label {
  display: block;
  margin-bottom: 10px;
  color: gray;
  font-size: 14px;
}

.profile-row p {
  font-size: 18px;
  color: #333;
}

/* ADDRESS */

.saved-address {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.address-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.address-top h2 {
  color: #593558;
}

.address-top button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

.address-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 15px;
}

.address-card h3 {
  margin-bottom: 12px;
}

.address-card p {
  color: #555;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .profile-page {
    flex-direction: column;
  }

  .profile-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .profile-main {
    padding: 25px;
  }

  .profile-row {
    flex-direction: column;
    gap: 20px;
  }

  .profile-header,
  .address-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* WISHLIST PAGE */

.wishlist-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.wishlist-sidebar {
  width: 300px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.wishlist-user {
  text-align: center;
  margin-bottom: 50px;
}

.wishlist-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.wishlist-user h3 {
  margin-bottom: 8px;
}

.wishlist-sidebar ul {
  list-style: none;
}

.wishlist-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wishlist-sidebar ul li:hover,
.wishlist-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.wishlist-main {
  flex: 1;
  padding: 40px;
}

.wishlist-header {
  margin-bottom: 35px;
}

.wishlist-header h1 {
  color: #593558;
}

/* PRODUCTS */

.wishlist-products {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.wishlist-card {
  background: white;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  gap: 25px;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wishlist-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
}

.wishlist-info {
  flex: 1;
}

.wishlist-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.wishlist-info p {
  color: gray;
  margin-bottom: 25px;
}

.wishlist-buttons {
  display: flex;
  gap: 15px;
}

.cart-btn,
.remove-btn {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.cart-btn {
  background: #593558;
}

.remove-btn {
  background: #dc3545;
}

.cart-btn:hover,
.remove-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .wishlist-page {
    flex-direction: column;
  }

  .wishlist-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wishlist-main {
    padding: 25px;
  }

  .wishlist-card {
    flex-direction: column;
    text-align: center;
  }

  .wishlist-card img {
    width: 100%;
    height: 250px;
  }

  .wishlist-buttons {
    flex-direction: column;
  }
}

/* ADD PRODUCT PAGE */

.add-product-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.add-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.add-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.add-sidebar ul {
  list-style: none;
}

.add-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.add-sidebar ul li:hover,
.add-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.add-main {
  flex: 1;
  padding: 40px;
}

.add-header {
  margin-bottom: 35px;
}

.add-header h1 {
  color: #593558;
}

/* FORM */

.product-form {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  color: #555;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

.full-width {
  margin-bottom: 30px;
}

/* UPLOADS */

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.upload-box {
  border: 2px dashed #ccc;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: 0.3s;
}

.upload-box:hover {
  border-color: #8d5f8c;
}

.upload-box i {
  font-size: 45px;
  color: #8d5f8c;
  margin-bottom: 15px;
}

.upload-box p {
  margin-bottom: 15px;
  color: #555;
}

.upload-box input {
  width: 100%;
}

/* BUTTON */

.save-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.save-btn:hover {
  background: #8d5f8c;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .add-product-page {
    flex-direction: column;
  }

  .add-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .add-main {
    padding: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* CSV PAGE */

.csv-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.csv-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.csv-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.csv-sidebar ul {
  list-style: none;
}

.csv-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.csv-sidebar ul li:hover,
.csv-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.csv-main {
  flex: 1;
  padding: 40px;
}

.csv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.csv-header h1 {
  color: #593558;
}

.csv-header button {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* UPLOAD BOX */

.csv-upload-box {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.csv-upload-box i {
  font-size: 70px;
  color: #8d5f8c;
  margin-bottom: 20px;
}

.csv-upload-box h2 {
  margin-bottom: 15px;
  color: #593558;
}

.csv-upload-box p {
  color: gray;
  margin-bottom: 25px;
}

.csv-upload-box input {
  margin-bottom: 25px;
}

.upload-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* INFO */

.csv-info {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.csv-info h2 {
  margin-bottom: 25px;
  color: #593558;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.columns-grid span {
  background: #f5f5f5;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .csv-page {
    flex-direction: column;
  }

  .csv-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .csv-main {
    padding: 25px;
  }

  .csv-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* USERS PAGE */

.users-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.users-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.users-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.users-sidebar ul {
  list-style: none;
}

.users-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.users-sidebar ul li:hover,
.users-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.users-main {
  flex: 1;
  padding: 40px;
}

.users-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.users-header h1 {
  color: #593558;
}

.users-header button {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* FILTERS */

.users-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.users-filters input,
.users-filters select {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

/* TABLE */

.users-table {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.users-table table {
  width: 100%;
  border-collapse: collapse;
}

.users-table th,
.users-table td {
  padding: 18px;
  text-align: left;
}

.users-table th {
  background: #f5f5f5;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.approve-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .users-page {
    flex-direction: column;
  }

  .users-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .users-main {
    padding: 25px;
  }

  .users-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .users-filters {
    flex-direction: column;
  }

  .users-table table {
    display: block;
    overflow-x: auto;
  }
}

/* CHECKOUT PAGE */

.checkout-page {
  display: flex;
  gap: 30px;
  padding: 60px 5%;
  background: #f5f5f5;
}

.checkout-left {
  flex: 2;
}

.checkout-right {
  flex: 1;
}

.checkout-box {
  background: white;
  padding: 35px;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.checkout-box h2 {
  margin-bottom: 25px;
  color: #593558;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid input,
.checkout-box textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.payment-method label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

/* ORDER SUMMARY */

.order-summary {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.order-summary h2 {
  margin-bottom: 25px;
  color: #593558;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #555;
}

.total {
  font-size: 22px;
  font-weight: bold;
  color: #593558;
}

.place-order-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.place-order-btn:hover {
  background: #8d5f8c;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .checkout-page {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* SETTINGS PAGE */

.settings-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.settings-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.settings-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.settings-sidebar ul {
  list-style: none;
}

.settings-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.settings-sidebar ul li:hover,
.settings-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.settings-main {
  flex: 1;
  padding: 40px;
}

.settings-header {
  margin-bottom: 35px;
}

.settings-header h1 {
  color: #593558;
}

/* FORM */

.settings-form {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .settings-page {
    flex-direction: column;
  }

  .settings-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .settings-main {
    padding: 25px;
  }
}

/* SEARCH PAGE */

.search-header {
  background: linear-gradient(to right, #593558, #8d5f8c);
  color: white;
  padding: 70px 5%;
  text-align: center;
}

.search-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.search-header p {
  font-size: 20px;
}

.search-header span {
  font-weight: bold;
  color: #ddc3c3;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .search-header h1 {
    font-size: 36px;
  }

  .search-header p {
    font-size: 16px;
  }
}

/* NOTIFICATIONS PAGE */

.notifications-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.notifications-sidebar {
  width: 300px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.notifications-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.notifications-sidebar ul {
  list-style: none;
}

.notifications-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.notifications-sidebar ul li:hover,
.notifications-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.notifications-main {
  flex: 1;
  padding: 40px;
}

.notifications-header {
  margin-bottom: 35px;
}

.notifications-header h1 {
  color: #593558;
}

/* NOTIFICATIONS */

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notification-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.notification-card.unread {
  border-left: 5px solid #8d5f8c;
}

.notification-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f3ebf3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #593558;
  font-size: 22px;
}

.notification-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.notification-content p {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.notification-content span {
  color: gray;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .notifications-page {
    flex-direction: column;
  }

  .notifications-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .notifications-main {
    padding: 25px;
  }

  .notification-card {
    flex-direction: column;
  }
}

/* ADDRESS PAGE */

.address-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.address-sidebar {
  width: 300px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.address-user {
  text-align: center;
  margin-bottom: 50px;
}

.address-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.address-user h3 {
  margin-bottom: 8px;
}

.address-sidebar ul {
  list-style: none;
}

.address-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.address-sidebar ul li:hover,
.address-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.address-main {
  flex: 1;
  padding: 40px;
}

.address-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.address-header h1 {
  color: #593558;
}

.address-header button {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* ADDRESS LIST */

.address-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.address-card-box {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.address-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.address-top h3 {
  color: #593558;
}

.address-actions {
  display: flex;
  gap: 10px;
}

.address-actions button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: #593558;
  color: white;
  cursor: pointer;
}

.delete-address {
  background: #dc3545 !important;
}

.address-card-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.address-card-box span {
  color: gray;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .address-page {
    flex-direction: column;
  }

  .address-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .address-main {
    padding: 25px;
  }

  .address-header,
  .address-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ORDER DETAILS PAGE */

.order-details-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.order-sidebar {
  width: 300px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.order-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.order-sidebar ul {
  list-style: none;
}

.order-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-sidebar ul li:hover,
.order-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.order-main {
  flex: 1;
  padding: 40px;
}

.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.order-header h1 {
  color: #593558;
}

/* PRODUCTS */

.order-products {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.order-product-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.order-product-card img {
  width: 140px;
  height: 140px;
  border-radius: 15px;
  object-fit: cover;
}

.order-product-info {
  flex: 1;
}

.order-product-info h3 {
  margin-bottom: 10px;
}

.order-product-info p {
  color: gray;
  margin-bottom: 10px;
}

.order-price {
  font-size: 24px;
  font-weight: bold;
  color: #593558;
}

/* SHIPPING */

.shipping-box,
.total-box {
  background: white;
  padding: 30px;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.shipping-box h2 {
  margin-bottom: 20px;
  color: #593558;
}

.shipping-box p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .order-details-page {
    flex-direction: column;
  }

  .order-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .order-main {
    padding: 25px;
  }

  .order-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .order-product-card {
    flex-direction: column;
    text-align: center;
  }

  .order-product-card img {
    width: 100%;
    height: 250px;
  }
}

/* FORGOT PASSWORD PAGE */

.forgot-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5%;
}

.forgot-container {
  width: 100%;
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LEFT */

.forgot-left {
  flex: 1;
  background: linear-gradient(to right, #593558, #8d5f8c);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forgot-left h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.forgot-left p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.forgot-left img {
  width: 250px;
}

/* RIGHT */

.forgot-right {
  flex: 1;
  padding: 60px;
}

.forgot-right h2 {
  margin-bottom: 35px;
  color: #593558;
}

.otp-box {
  margin-top: 25px;
}

.reset-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #8d5f8c;
  color: white;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: 0.3s;
}

.reset-btn:hover {
  background: #593558;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .forgot-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .forgot-left,
  .forgot-right {
    padding: 40px 25px;
  }

  .forgot-left h1 {
    font-size: 34px;
  }
}

/* INVOICE PAGE */

.invoice-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  padding: 60px 5%;
}

.invoice-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* TOP */

.invoice-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.invoice-top h1 {
  color: #593558;
  margin-bottom: 10px;
}

.invoice-id h2 {
  color: #593558;
  margin-bottom: 10px;
}

/* INFO */

.invoice-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.invoice-info h3 {
  margin-bottom: 15px;
  color: #593558;
}

.invoice-info p {
  margin-bottom: 10px;
  color: #555;
}

/* TABLE */

.invoice-table {
  margin-bottom: 40px;
}

.invoice-table table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
  padding: 18px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.invoice-table th {
  background: #f5f5f5;
}

/* TOTAL */

.invoice-total {
  max-width: 350px;
  margin-left: auto;
  margin-bottom: 40px;
}

/* BUTTONS */

.invoice-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.invoice-buttons button {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

.print-btn {
  background: #8d5f8c !important;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .invoice-top,
  .invoice-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .invoice-buttons {
    flex-direction: column;
  }

  .invoice-table table {
    display: block;
    overflow-x: auto;
  }
}

/* SEO PAGE */

.seo-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.seo-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.seo-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.seo-sidebar ul {
  list-style: none;
}

.seo-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.seo-sidebar ul li:hover,
.seo-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.seo-main {
  flex: 1;
  padding: 40px;
}

.seo-header {
  margin-bottom: 35px;
}

.seo-header h1 {
  color: #593558;
}

/* FORM */

.seo-form {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.seo-form .form-group {
  margin-bottom: 25px;
}

.seo-form label {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-weight: 600;
}

.seo-form input,
.seo-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .seo-page {
    flex-direction: column;
  }

  .seo-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .seo-main {
    padding: 25px;
  }
}

/* REPORTS PAGE */

.reports-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* SIDEBAR */

.reports-sidebar {
  width: 280px;
  background: #593558;
  color: white;
  padding: 40px 25px;
}

.reports-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

.reports-sidebar ul {
  list-style: none;
}

.reports-sidebar ul li {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.reports-sidebar ul li:hover,
.reports-sidebar ul .active {
  background: #8d5f8c;
}

/* MAIN */

.reports-main {
  flex: 1;
  padding: 40px;
}

.reports-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.reports-header h1 {
  color: #593558;
}

.reports-header button {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
}

/* CARDS */

.reports-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.report-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.report-card i {
  font-size: 42px;
  color: #8d5f8c;
  margin-bottom: 20px;
}

.report-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.report-card p {
  color: gray;
}

/* TABLE */

.report-table {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.report-table table {
  width: 100%;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  padding: 18px;
  text-align: left;
}

.report-table th {
  background: #f5f5f5;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .reports-page {
    flex-direction: column;
  }

  .reports-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .reports-main {
    padding: 25px;
  }

  .reports-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .report-table table {
    display: block;
    overflow-x: auto;
  }
}

/* PAYMENT PAGE */

.payment-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-box {
  background: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-box h1 {
  color: #593558;
  margin-bottom: 20px;
}

.payment-box h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.payment-box p {
  color: gray;
  margin-bottom: 30px;
}

.payment-box button {
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

/* =========================
DISTRIBUTOR + B2B PAGE
========================= */

.distributor-header,
.b2b-header {
  background: linear-gradient(to right, #593558, #8d5f8c);
  padding: 70px 5%;
  color: white;
  text-align: center;
}

.distributor-header h1,
.b2b-header h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.distributor-header p,
.b2b-header p {
  font-size: 20px;
  opacity: 0.9;
}

.dist-price {
  font-size: 34px;
  color: #593558;
  font-weight: bold;
  margin: 20px 0;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.quantity-box button {
  width: 40px;
  height: 40px;
  border: none;
  background: #593558;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

.quantity-box input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* =========================
ADMIN LOGIN
========================= */

.admin-login-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #593558, #8d5f8c);
  padding: 40px;
}

.admin-login-box {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.admin-login-box h1 {
  text-align: center;
  color: #593558;
  margin-bottom: 35px;
  font-size: 38px;
}

.admin-login-box .input-box {
  margin-bottom: 20px;
}

.admin-login-box input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.admin-login-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  font-size: 17px;
  transition: 0.3s;
}

.admin-login-btn:hover {
  background: #8d5f8c;
}

/* =========================
EDIT PRODUCT PAGE
========================= */

.edit-product-page {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

.edit-product-main {
  flex: 1;
  padding: 40px;
}

.edit-product-header {
  margin-bottom: 35px;
}

.edit-product-header h1 {
  color: #593558;
  font-size: 38px;
}

.edit-product-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.edit-product-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.edit-product-form input,
.edit-product-form textarea,
.edit-product-form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.update-product-btn {
  margin-top: 30px;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  background: #593558;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {
  .distributor-header h1,
  .b2b-header h1 {
    font-size: 34px;
  }

  .edit-product-form .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-login-box {
    padding: 35px 25px;
  }
}

/* AUTH TABS */

.auth-tabs {
  display: flex;
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  flex: 1;
  padding: 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
}

.active-tab {
  color: #593558;
  border-bottom: 3px solid #593558;
}

/* FORM ANIMATION */

.auth-form {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================
AUTH PAGES
Search N Shop
==================================== */

.auth-section {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5%;
}

.auth-container {
  width: 100%;
  max-width: 1250px;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE */

.auth-left {
  flex: 1;
  background: linear-gradient(to right, #593558, #8d5f8c);
  color: white;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left h1 {
  font-size: 55px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.auth-left p {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 35px;
}

.auth-left img {
  width: 100%;
  max-width: 420px;
}

/* RIGHT SIDE */

.auth-right {
  flex: 1;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form {
  width: 100%;
}

.auth-form h2 {
  font-size: 40px;
  color: #593558;
  margin-bottom: 35px;
}

/* FORM GRID */

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* INPUT BOX */

.input-box {
  width: 100%;
  position: relative;
  margin-bottom: 22px;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
  background: white;
}

.input-box textarea {
  resize: none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: #8d5f8c;
  box-shadow: 0 0 0 4px rgba(141, 95, 140, 0.12);
}

/* CHECKBOX */

.remember-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.remember-box label {
  color: #555;
  font-size: 15px;
}

/* BUTTON */

.auth-btn {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 12px;
  background: #593558;
  color: white;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.auth-btn:hover {
  background: #8d5f8c;
  transform: translateY(-2px);
}

/* LINKS */

.auth-links {
  margin-top: 25px;
  text-align: center;
}

.auth-links a {
  color: #593558;
  text-decoration: none;
  font-weight: 600;
}

.auth-links a:hover {
  color: #8d5f8c;
}

/* OTP BOX */

.otp-box {
  display: none;
}

/* REGISTER PAGE */

.register-title {
  margin-bottom: 12px;
}

.register-subtitle {
  color: gray;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* WHATSAPP BTN */

.whatsapp-btn {
  background: #25d366 !important;
}

.whatsapp-btn:hover {
  background: #1da851 !important;
}

/* ADMIN LOGIN */

.admin-login-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #593558, #8d5f8c);
  padding: 40px;
}

.admin-login-box {
  width: 100%;
  max-width: 520px;
  background: white;
  padding: 55px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.admin-login-box h1 {
  text-align: center;
  color: #593558;
  margin-bottom: 35px;
  font-size: 42px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .auth-container {
    flex-direction: column;
  }

  .auth-left,
  .auth-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .auth-left,
  .auth-right {
    padding: 45px 25px;
  }

  .auth-left h1 {
    font-size: 38px;
  }

  .auth-form h2 {
    font-size: 32px;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .admin-login-box {
    padding: 40px 25px;
  }
}
