/* Default light theme */
body {
    background-color: white;
    color: black;
    transition: 0.3s;
  }
  
 
  body.dark-mode {
    background-color: #121212;
    color: white;
    z-index: -1;
    position: relative;
  }
 
  
  /* The switch styling 
  .theme-switch {
    position: absolute;
    top: 0;
    left: 0;
    color: red;
  }
  .colord {
    color: Red;
    margin-left: 12px;
    margin-top: 10px;
    padding: 10px;
    top: 4rem;
    left: 4rem;
  }
  
  .theme-switch input {
    display: none;
  }
  
  .theme-switch .slider {
    width: 40px;
    height: 14px;
    background-color: green;
    display: inline-block;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    color: red;
    margin-left: 21px;
  }
  
  .theme-switch .slider::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: white;
    color: rgb(136, 136, 136);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0px;
    transition: 0.3s;
  }
  
  .theme-switch input:checked + .slider::before {
    transform: translateX(25px);
  }*/

.theme-switch{display:inline-block;vertical-align:middle}
.theme-switch input{display:none}
.theme-switch .slider{width:52px;height:28px;background:linear-gradient(90deg,#ddd,#bbb);display:inline-block;border-radius:999px;position:relative;box-shadow:inset 0 1px 3px rgba(0,0,0,0.2)}
.theme-switch .slider::before{content:'';position:absolute;left:4px;top:4px;width:20px;height:20px;border-radius:50%;background:white;transition:all .22s cubic-bezier(.2,.9,.2,1)}
.theme-switch input:checked + .slider{background:linear-gradient(90deg,var(--accent),#4fd8ff)}
.theme-switch input:checked + .slider::before{transform:translateX(24px);background:linear-gradient(180deg,#0af,#06c)}

/* Navbar Styling */
.navbar {
    background-color: #333; /* Dark background */
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 8%;
    gap: 20px;
}

/* Styling for Links */
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 2px 1px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.navbar a:hover {
    background-color: orange;
    color: black;
}

.btn-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: white; /* Bootstrap-style blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

.btn-link:hover {
    background-color: #305e8f;
  }
  
  
.badge-pending { background-color: orange; color: white; padding: 4px 8px; border-radius: 4px; }
.badge-approved { background-color: green; color: white; padding: 4px 8px; border-radius: 4px; }
.badge-rejected { background-color: red; color: white; padding: 4px 8px; border-radius: 4px; }

  


#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px;
}

#search-suggestions {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5%;
  position: absolute;
  width: 60%;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
    #search-suggestions {
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 5%;
        position: absolute;
        width: 80%;
        max-height: 300px;
        overflow-y: auto;
        display: none;
        z-index: 1000;
        
    }
    header {
        background-color: #ff7300;
        color: white;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100vw;
        width: 100%;
        max-height: 90px;
        box-sizing: border-box;
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        padding: 3px 10px;
        color: black;
        display: flex;
        flex-direction: row;
        max-height: 90px;
        max-width: 200px;

    }
      
    /* The switch styling */
    .theme-switch {
        position: absolute;
        top: 0.1rem;
        left: 0.1rem;
    }
}

#search-suggestions div {
    padding: 10px;
    cursor: pointer;
    color: #000;
    
}

#search-suggestions div:hover {
    background-color: rgb(125, 131, 70);
} 


/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    width: 100%;
    padding: 10px;
    padding: 3px;
    
}


/* Button Styling */
button {
    background-color: rgb(255, 94, 0);
    color: black;
    border: 1px solid currentColor;
    border-radius: 10% !important;
    padding: 10px;
    cursor: pointer;
   
    
}

#remove-from-cart {
    border-radius: 10px;
}

button:hover {
    background-color: orange;
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #f5f5f5;
    color: #333;
    z-index: -1;
}

/* Header 
header {
    background-color: #ff9900;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
*/
header {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4d 50%, #2a0a3a 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  overflow: hidden;
  min-height: 80px;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  
}

/* Animated subtle nebula glow */
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 50, 200, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(50, 150, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 100, 200, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: nebula 20s ease-in-out infinite alternate;
    z-index: -1 !important;
}

/* Glowing Stars */
header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: -1 !important;
}

/* Individual glowing stars using pseudo-elements */
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
  animation: twinkle 3s infinite alternate;
  z-index: -1 !important;
}

.star:nth-child(1) { width: 3px; height: 3px; top: 20%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { width: 2px; height: 2px; top: 35%; left: 70%; animation-delay: 1s; }
.star:nth-child(3) { width: 4px; height: 4px; top: 60%; left: 30%; animation-delay: 2s; }
.star:nth-child(4) { width: 2px; height: 2px; top: 45%; left: 85%; animation-delay: 0.5s; }
.star:nth-child(5) { width: 3px; height: 3px; top: 75%; left: 50%; animation-delay: 1.5s; }
.star:nth-child(6) { width: 1px; height: 1px; top: 25%; left: 45%; animation-delay: 2.5s; }

/* Twinkling animation */
@keyframes twinkle {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 12px 3px rgba(255, 255, 255, 1); }
}

@keyframes nebula {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(10px) translateY(-10px); }
}

/* Optional: Add constellation lines (very subtle) */
.constellation {
  position: absolute;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(30deg);
  top: 30%; left: 20%;
  pointer-events: none;
  z-index: -1 !important;
}

.constellation::before,
.constellation::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  background: inherit;
}

.constellation::before { top: -20px; left: 25px; transform: rotate(-50deg); }
.constellation::after { top: 10px; left: -15px; transform: rotate(70deg); }
.logo {
    font-size: 8px;
    font-weight: bold;
}

/* Default: Show the logo, hide the text */
.logo-image {
    display: block;
}
.logo-text {
    display: none;
}

/* On small screens, hide the logo and show the text */
@media screen and (max-width: 768px) {
    .logo-image {
        display: none;
    }
    .logo-text {
        display: block;
    }
      
    /* The switch styling */
    .theme-switch {
        position: absolute;
        top: 0.1rem;
        left: 0.1rem;
    }
        
    

    

    a {
        color: inherit !important;
        text-decoration: none;
        font-size: 0.75rem !important;

        &:hover {
            color: lighten(currentColor, 20%) !important; 
            text-decoration: underline;
        }
    }
}
@media screen and (min-width: 769px) {
    a {
        color: inherit !important;
        text-decoration: none;
        font-size: 1rem !important;

        &:hover {
            color: lighten(currentColor, 20%) !important; 
            text-decoration: underline;
        }
    }
}
@media screen and (max-width: 480px) {
    .logo-image img {
        width: 100px; /* Reduce logo size */
    }
    .logo-text {
        margin-right: 0%;
        color:rgb(243, 9, 165);
        font-weight: bold;
        font-size: 25px; /* Reduce text size */
         /* Less bold for small screens */
    }
    .user-info {
        font-size: 10px;
        margin-top: 30px;
    }
    

    a {
    color: inherit !important;
    text-decoration: none;
    font-size: 0.75rem !important;

    &:hover {
        color: lighten(currentColor, 20%) !important; 
        
    }
    }
}


.search-bar {
    flex: 1;
    margin: 0 15px;
}

.search-bar input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, #ff7300 0%, #ff9900 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Categories Section */
.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.categories .category {
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.categories .category:hover {
    background-color: #ffcc80;
}

/* Featured Product List (Horizontal Scroll) */
.product-list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 15px;
    white-space: nowrap;
    
}

.product-list::-webkit-scrollbar {
    display: none;
}

.product-list .product-card {
    flex: 0 0 auto;
    width: 200px;
    
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-list .product-card img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgb(255, 102, 0);
}
a:hover {
    color:orange;
}
/* Main Product Grid 
#product-grid {
    display: frid;
    
    gap: 20px;
    padding: 20px;
}

#product-grid .product {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    grid-template-columns: repeat(3, 1fr);
}

#product-grid img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}*/



/* General Reset 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}*/

/*
.container {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}


@media screen and (max-width: 768px) {
    aside {
        flex: 1;
        max-width: 250px;
        border: 2px solid currentColor;
        border-color: 2px solid currentColor;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    aside h3 {
        margin-bottom: 15px;
        font-size: 18px;
        color: inherit !important;
    }
}
@media screen and (min-width: 769px) {
    aside {
        flex: 1;
        max-width: 250px;
        border: 2px solid currentColor;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    aside h3 {
        margin-bottom: 15px;
        font-size: 18px;
        color: inherit !important;
    }
}*/
.container {
    display: flex;
    padding: 10px; 
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.sidebar-section {
    flex: 1;
    min-width: 150px;
    padding: 10px; 
    border: 2px solid currentColor; 
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    
}

.sidebar-section h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: inherit;
}

.sidebar-section h4 {
    margin: 0 0 5px;
    font-size: 14px;
}

select, input {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    border-radius: 4px;
    border: 2px solid currentColor;
}

.messages {
    flex: 1;
    padding: 10px;
}

.alert {
    margin: 5px 0; 
    padding: 8px; 
    border-radius: 4px;
    
    color: #721c24;
    font-size: 14px;
}

.nav-item a {
    display: block;
    padding: 5px 0; /* Reduced padding */
    font-size: 14px; /* Smaller font size */
    color: #007bff;
    text-decoration: none;
}

.nav-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .sidebar {
        flex-direction: column; /* Stack vertically on smaller screens */
        gap: 8px; /* Reduced gap */
    }

    .sidebar-section {
        min-width: 100%; /* Full width on small screens */
        padding: 8px; /* Further reduced padding */
    }

    .sidebar-section h3 {
        font-size: 14px; /* Smaller font size */
    }

    .sidebar-section h4 {
        font-size: 12px; /* Smaller font size */
    }

    select, input {
        font-size: 12px; /* Smaller font size */
    }

    .alert {
        font-size: 12px; /* Smaller font size */
    }
}

@media screen and (min-width: 769px) {
    .sidebar-section {
        max-width: 200px; /* Limit width of each section */
    }
}
select, input[type="range"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 2px solid currentColor;
    border-radius: 4px;
    font-size: 14px;
}

.filter-category {
    margin-bottom: 20px;
}

.filter-category h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: inherit !important;
}

#price-value {
    font-weight: bold;
    color: inherit !important;
}

/* Main Product Grid */
main {
    flex: 5;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 200px;
}

#product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    margin-left: 1vh;
}

.product {
    
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    height: 450px;
    text-align: center;
    font-size: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.modal-content {
    color: inherit !important;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgb(255, 102, 0);
}

.product img {
    max-width: 100% !important;
    height: 200px !important;
    border-radius: 4px;
    width: 100% !important;
}

.product h2 {
    font-size: 18px;
    margin: 10px 0;
    color: inherit !important;
}

.product p {
    font-size: 16px;
    color: inherit !important;
}

.product .rating {
    color: #ffc107;
    margin: 10px 0;
}

.product button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
    font-size: 14px;
    transition: background-color 0.2s;
}


.product button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #product-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 5px;
        max-width: 100%;
        overflow-x: hidden;
        margin-left: 1vh;

    }
    p {
        margin-top: 0;
        margin-bottom: 0.3rem !important;
    }

}
@media screen and (min-width: 769px) {
    .product {
        width: 240px;
        padding: 10px;
        height: 450px;
        font-size: 24px;
        border: 1px solid currentColor;

    }
}

@media screen and (max-width: 480px) {
    #product-grid {
        gap: 5px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        overflow-x: hidden;
        margin-left: 1vh;
    }
    .product {
        width: 210px;
        border: 1px solid currentColor;
        padding: 10px;
        height: 270px;
        border-radius: 6px;
        font-size: 14px;
        text-align: center;
    }
    p {
        margin-top: 0;
        margin-bottom: 0.2rem !important;
    }
    
    .product button {
        background-color: #007bff;
        color: #fff;
        border: none;
        padding: 4px 5px;
        border-radius: 2px;
        cursor: pointer;
        margin: 3px;
        font-size: 10px;
        transition: background-color 0.2s;
    }
    
    .product img {
        max-width: 100%;
        height: 120px !important;
        width: 100% !important;
        border-radius: 4px;
    }

    .product h2 {
        font-size: 10px;
        margin: 3px 0;
        color: #444;
    }

    .product p {
        font-size: 10px;
        
    }

    .product .rating {
        color: #ffc107;
        margin: 3px 0;
    }
}
               



            


/* Shopping Cart */
aside1.cart {
    flex: 1;
    max-width: 300px;
    
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#shopping-cart h3 {
    margin-bottom: 15px;
    font-size: 18px;
    
}

#cart-items {
    list-style: none;
    margin-bottom: 20px;
}

#cart-items li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

#cart-items li:last-child {
    border-bottom: none;
}

#cart-items button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s;
}

#cart-items button:hover {
    background-color: #c82333;
}

#total-amount {
    font-weight: bold;
    color: #333;
}

#checkout-button {
    width: 100%;
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

#checkout-button:hover {
    background-color: #218838;
}

/* Product Modal */
#prev-image, #next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 30% !important;
    right:30% !important;
    width: 50% !important; 
    height: 80%; 
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 16px; /* Slightly reduced padding */
    border-radius: 8px;
    max-width: 400px; /* Reduced from 500px to 400px */
    width: 80%; /* Adjusted to scale down */
    position: relative;
    color:#000 !important;
}


.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}


@media screen and (max-width: 768px) {
    .modal {
        left: 30% !important;
        top: 50% !important;
        transform: translate(-30%, -50%); 
        width: 90%;  
        height: auto; 
        max-height: 80vh; 
        background-color: rgba(0, 0, 0, 0.6); 
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
        min-width: 400px;
    }

    .modal-content {
        width: 90%;  
        max-width: 320px; 
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .close {
        font-size: 20px; 
        top: 8px;
        right: 8px;
    }

    #image-slider {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #image-slider img {
        width: 80%;
        max-height: 200px; 
        object-fit: contain;
    }

    #prev-image, #next-image {
        font-size: 18px; 
        padding: 5px 10px
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    aside, aside1.cart {
        max-width: 100%;
    }

    main {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
#image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: blue;
}

#product-images {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 100%;
}

.product-image {
    max-width: 300px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
}

#next-btn {
    cursor: pointer;
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: rgb(7, 23, 236);
    border: none;
    border-radius: 5px;
}

#close-modal {
    float: right;
    cursor: pointer;
    font-size: 24px;
}
.image-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    white-space: nowrap;
    border-top: 1px solid #ddd;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal-body img {
    width: 100%; /* Ensures images fit properly */
    display: block; /* Avoid inline display issues */
}
.carousel-item {
    text-align: left; /* Centers images */
}

.carousel-item {
    display: none; /* Hide all slides by default */
}
.carousel-item.active {
    display: block !important; /* Show only the active slide */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Makes arrows black */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5); /* Darker background */
    border-radius: 50%; /* Circular buttons */
    width: 50px; /* Increase width */
    height: 50px; /* Increase height */
    color:#000
}

.close {
    color: #000;
}
.product-link {
    text-decoration: none;
    color: black;
}

.product-link:hover {
    color: rgb(216, 219, 22);
    
}

.currency-selector {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5%;
}
@media screen and (max-width: 768px) {
    .currency-selector {
    position: absolute;
    top: 1px;
    right: 3px;
    width: 15%;
    font-size: 14px;
}
}
@media screen and (max-width: 480px) {
    .currency-selector {
    position: absolute;
    top: 1px;
    right: 3px;
    width: 15%;
    font-size: 14px;
}
}

.savcart-footer {
    background: #0f1115;
    color: #aaa;
    padding: 30px 20px 15px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left h3 {
    color: #fff;
    margin-bottom: 5px;
}

.footer-left p {
    font-size: 0.9em;
    color: #888;
}

.footer-links a {
    margin-left: 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #00c6ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #666;
    border-top: 1px solid #1c1f26;
    padding-top: 10px;
}
