/** Shopify CDN: Minification failed

Line 9:0 Unexpected "<"
Line 89:1 Unexpected "{"
Line 283:1 Unexpected "<"

**/

<style>
/* General styling for body and header */
body {
  padding: 0;
  margin: 0;
}

.header {
  background-color: #000;
  padding: 20px 15px;
  text-align: center;
  position: relative;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1340px;
  margin: auto;
}

/* Style adjustments for menu and logo */
.desks-nav-links {
  display: flex;
  align-items: center;
  margin-left: -30px;
}

.desks-nav-links a {
  color: #fff;
  
  text-decoration: none;
  font-size: 16px;
}

.logo {
  flex-grow: 1;
  text-align: center;
}

.logo img {
  width: 150px;
}

/* Style adjustments for shop-now section */
.shop-now {
  display: flex;
  align-items: center;
  gap: 10px; /* Adds space between Shop button and user icon */
}

.shop-now .shop-button {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

.shop-now .shop-icon {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.account-bar-inner-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-bar-inner-list li a {
  color: white;
  text-decoration: none;
}

/* Cart icon styling */
 {
  position: relative;
  
}


 .cart-icon {
    position: relative;
  }

  .cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: #fff;
    border-radius: 50%;
    padding: 4px 6px;
    font-size: 10px;
  }

.collection-icon {
  width: 40px;
  height: 40px;
}

.badge {
  position: relative;
   /* Adjusted badge position slightly higher */
  right: -20px;
  top: -2px;/* Adjusted badge position slightly more to the right */
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  min-width: 18px; /* Ensures the badge maintains a circular shape */
  min-height: 18px; /* Ensures the badge maintains a circular shape */
  line-height: 1; /* Centers text vertically */
}

/* Hover effects */
.nav-links a:hover, .desks-nav-links a:hover,
.shop-now .shop-button:hover,
.shop-now .shop-icon:hover {
  color: #f5e4d2;
}

.menu-icon {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .desks-nav-links,
  .shop-now .shop-button {
    display: none;
  }

  .shop-now .shop-icon {
    display: inline-block;
  }
.cart-icon {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .container {
    justify-content: space-between;
  }

  .logo {
    order: 1;
    padding-left: 15px;
    margin: 30px;
  }

  .shop-now {
    order: 2;
  }
}



/* Desktop styles */
@media (min-width: 769px) {
  .container {
    justify-content: space-between; /* Ensures items are spaced out */
    align-items: center;
  }

  .logo {
    order: 1; /* Keeps the logo on the left */
    
    text-align: left; /* Aligns logo to the left */
  }

  .desks-nav-links,
  .shop-now {
    order: 2; /* Moves nav links and shop-now to the right */
    display: flex;
    align-items: center;
    
    gap: 20px; /* Adds space between elements */
  }

  .desks-nav-links {
    
    width: 35%;
    align-items: center;
   
  }
}


  .cart-sec {
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 50%;
  }
  .cart-content {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .cart-table {
    width: 100%;
    border-collapse: collapse;
  }
  .cart-table th, .cart-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  .cart-table th {
    font-weight: bold;
  }
  .product-info h2 {
    margin: 0;
    font-size: 16px;
  }
  .product-info a {
    font-size: 12px;
    color: #888;
  }
  .quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
  }
  .remove-link {
    color: #ff4d4d;
    font-size: 18px;
    text-decoration: none;
  }
  .cart-totals {
    margin-top: 20px;
    text-align: right;
  }
  .cart-totals p {
    margin: 5px 0;
    font-size: 16px;
  }
  .cart-totals p span {
    font-weight: bold;
    color: #e67e22;
  }
  .update-cart-button, .checkout-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  .update-cart-button {
    background-color:red;
    color: #fff;
  }
  .checkout-button {
    background-color: #ff6600;
    color: #fff;
  }
 </style>
