/* Global Styles */
:root {
  --primary-color: #4a6fa5;
  --secondary-color: #166088;
  --accent-color: #4fc3f7;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 50px;
  height: 50px;
}

.main-nav ul {
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary-color);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-bg.jpg') center/cover no-repeat;
  color: white;
  height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Featured Products */
.section-header {
  text-align: center;
  margin: 60px 0 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.add-to-cart-btn {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-card:hover .add-to-cart-btn {
  bottom: 0;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.product-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.product-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Cart Page Styles */
.cart-main {
  padding: 60px 0;
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.cart-header h2 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.back-to-shop {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-weight: 600;
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.cart-items {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cart-item-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.remove-item {
  color: var(--danger-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cart-summary {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  align-self: start;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.btn-checkout {
  width: 100%;
  padding: 12px;
  background-color: var(--success-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-checkout:hover {
  background-color: #3d8b40;
}

.btn-clear {
  width: 100%;
  padding: 12px;
  background-color: var(--danger-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-clear:hover {
  background-color: #d32f2f;
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
}

.floating-cart-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--danger-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Footer Styles */
.main-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  width: 60px;
  height: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.links-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.links-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.links-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-column a {
  transition: var(--transition);
  color: #ccc;
}

.links-column a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .cart-content {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .main-nav ul {
    gap: 15px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
  }
  
  .cart-item-img {
    height: 200px;
  }
}

/* Search Bar Styles */
.search-container {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

#search-form {
  display: flex;
  position: relative;
}

#search-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.95rem;
  outline: none;
}

#search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

/* Auth Button Styles */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-btn {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.auth-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.welcome-user {
  color: var(--primary-color);
  font-weight: 600;
  margin-right: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal h2 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
}

.auth-switch a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Checkout Page Styles */
.checkout-main {
  padding: 60px 0;
}

.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.checkout-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--border-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.step.active span {
  background-color: var(--primary-color);
}

.step.active p {
  color: var(--primary-color);
  font-weight: 600;
}

.checkout-form {
  display: none;
}

.checkout-form.active {
  display: block;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-method {
  flex: 1;
}

.payment-method input {
  display: none;
}

.payment-method label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-method label i {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.payment-method input:checked + label {
  border-color: var(--primary-color);
  background-color: rgba(74, 111, 165, 0.1);
}

.payment-method input:checked + label i {
  color: var(--primary-color);
}

.payment-fields {
  margin-top: 20px;
  display: none;
}

#credit-card-fields {
  display: block;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: rgba(74, 111, 165, 0.1);
}

.order-summary {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.order-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-img {
  width: 80px;
  height: 80px;
}

.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-details h4 {
  margin-bottom: 5px;
}

.checkout-item-price {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 600;
}

.shipping-info, .payment-info {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.shipping-info h4, .payment-info h4 {
  margin-bottom: 10px;
}

/* Order Confirmation Modal */
.modal-content.confirmation {
  text-align: center;
  padding: 40px;
}

.confirmation-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.confirmation h2 {
  margin-bottom: 15px;
}

.confirmation p {
  margin-bottom: 10px;
}

#order-id {
  font-weight: 600;
  color: var(--primary-color);
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

/* No Results Message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
}

/* Updated Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Strict 4 columns */
  gap: 30px;
  margin-bottom: 60px;
}

/* Ensure each product card has equal height */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product image container with fixed aspect ratio */
.product-image {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%; /* Square aspect ratio */
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Auth Styles */
.auth-main {
  padding: 60px 0;
  background-color: var(--light-color);
}

.auth-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  transition: var(--transition);
}

.auth-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.auth-header h2 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.auth-header p {
  color: var(--text-light);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-with-icon input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.input-with-icon input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .auth-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .auth-card {
    padding: 20px;
  }
  
  .auth-header h2 {
    font-size: 1.5rem;
  }
}

/* Admin Dashboard Styles */
.admin-container {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background-color: #2c3e50;
  color: white;
  padding: 1.5rem;
}

.admin-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-brand img {
  max-width: 80px;
  border-radius: 50%;
}

.admin-brand h2 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
}

.admin-brand p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.admin-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-nav li {
  margin-bottom: 0.5rem;
}

.admin-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.admin-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.admin-nav li.active a {
  background-color: #4a6baf;
}

.admin-nav i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.admin-main {
  flex: 1;
  background-color: #f9f9f9;
}

.admin-header {
  padding: 1.5rem;
  background-color: white;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.admin-content {
  padding: 1.5rem;
}

.admin-section {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.product-thumb {
  max-width: 50px;
  max-height: 50px;
  border-radius: 4px;
}

.actions {
  display: flex;
  gap: 0.5rem;
}

.btn-edit, .btn-delete {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: white;
}

.btn-edit {
  background-color: #4a6baf;
}

.btn-delete {
  background-color: #e74c3c;
}

.btn-edit:hover {
  background-color: #3a5a9f;
}

.btn-delete:hover {
  background-color: #c0392b;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: #4a6baf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #3a5a9f;
}

/* Modal Styles */
.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content h2 {
  margin-top: 0;
}

textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  min-height: 100px;
  resize: vertical;
}

/* Update image paths to use ../ to go up one level from /admin/css/ */
.admin-login-box .admin-logo {
  max-width: 100px;
  margin-bottom: 1rem;
  content: url("Home electronic device logo.png");
}

.admin-brand img {
  max-width: 80px;
  border-radius: 50%;
  content: url("Home electronic device logo.png");
}