/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  body {
    font-family: Arial, sans-serif;
    background-color: #EFEFEF;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

/*Transparent on scroll */
.scrolled {
  background-color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px); 
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 60px;
  height: auto;
  margin-right: 10px;
  transition: width 0.3s ease;
}

.logo span {
  font-weight: bold;
  font-size: 24px;
  color: #CCA351;
  transition: font-size 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li {
  position: relative; 
}

.nav-links li a {
  text-decoration: none;
  color: #555;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;  
}

.nav-links li a:hover {
  color: #CCA351;
}

/* Underline animation on hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 92%; 
  height: 2px;
  bottom: -4px; 
  left: 5%;
  background-color: #CCA351;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Dropdown menu styling */
.nav-links li:hover .dropdown {
  display: block;  
}

.dropdown {
  display: none;  
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(35, 35, 35, 0.9);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  width: auto;
  flex-direction: column;  /* Items listed vertically */
  z-index: 10;
}

.dropdown a {
  color: #fff !important;
  padding: 8px 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  display: block; 
  white-space: nowrap;  /* Prevent text from breaking into multiple lines */
}

/* Sub-dropdown menu styling */
.sub-dropdown {
  display: none; 
  position: absolute;
  top: 0;
  left: 100%; 
  background-color: rgba(35, 35, 35, 0.9);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  width: auto;
}

.dropdown-item:hover .sub-dropdown {
  display: block;  /* Show sub-dropdown on hover */
}

.sub-dropdown a {
  color: #fff !important;
  padding: 8px 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  display: block;
}

/* Underline animation on hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 85%; 
  height: 2px;
  bottom: -4px; 
  left: 9%;
  background-color: #CCA351;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.account {
  display: flex;
  align-items: center;
  gap: 15px;
}

.account a {
  text-decoration: none;
  color: #555;
}

.account a:hover {
  color: #CCA351;
}

.account-icon {
  font-size: 18px;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
}

.search input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
}

.search-button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0 10px;
  font-size: 20px;
}

.search input:focus {
  outline: none;
  border-color: #CCA351;
}

.logout {
  padding: 10px;
  background-color: #ff4747;  
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.logout:hover {
  background-color: #d13a3a;  
}

/* Parallax Wrapper */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

/* Parallax Image */
.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Pottery 2.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1; /* Keep the image behind the text */
}

/* Content Sections */
.content-section {
  width: 100%;
  height: 25vh;
  display: flex;
  align-items: center;
  font-size: 2rem;
  z-index: 2;
  font-family: serif;
  line-height: 1.5;
}

/* Gold Section */
.section-gold {
  background-color: #CCA351;
  color: black;
  justify-content: left;
  text-align: left;
  overflow: hidden;
}

/* Black Section */
.section-black {
  background-color: rgba(0, 0, 0, 0.85); 
  color: white;
  justify-content: right;
  text-align: right;
  overflow: hidden;
}

/* Text overlay */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 10%; 
  transform: translateY(-50%);
  color: white;
  font-family: Arial, sans-serif;
}

/* Artists' Picks text style */
.artists-picks {
  font-size: 50px; 
  margin-bottom: 50px; 
  font-family: serif;
}

/* Shop button style */
.shop-button {
  background-color: white; 
  color: #CCA351;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-family: serif;
  letter-spacing: normal;
  display: inline-block; 
  transition: transform 0.3s ease; 
  transform-origin: center; 
}

.shop-button:hover {
  transform: scale(1.1); 
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 0 20px;
  height: 100vh; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  align-items: flex-start; 
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-image1 {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3; 
}

/* Hero Content */
.hero-content {
  position: relative;
  max-width: 1000px; 
  margin: 0; 
  padding: 20px;
  z-index: 1; 
  width: 100%; 
}

/* Heading Styling */
.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase; 
  margin-left: 0; 
  font-family: serif;
}

/* Paragraph Styling */
.hero p {
  font-size: 1.5rem; 
  margin-bottom: 30px;
  margin-left: 0; 
  font-family: serif;
  
}

/* Buttons Section */
.cta-buttons {
  display: flex;
  flex-direction: row; 
  justify-content: flex-start;
  gap: 20px;
  margin-top: 30px; 
}

.btn1 {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-family: serif;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn1-primary {
  background-color: #CCA351; 
  color: white;
}

.btn1-primary:hover {
  background-color: #b3922c; 
}

.btn1-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn1-secondary:hover {
  background-color: white;
  color: #b3922c;
}

/* Best Sellers Section */
.new-arrivals {
  padding: 40px;
  background-color:#232323; 
  color: #f8f8f8;
  text-align: center;
}

.new-arrivals h2 {
  font-size: 2.5rem;
  color: #CCA351; 
  margin-bottom: 30px;
  font-family: serif;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid */
  gap: 20px;
}

/* Product Card */
.product-card {
  background-color: #3B3B3B; 
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05); 
  background-color: #4F4F4F;
}

/* Placeholder Image */
.product-image img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

/* Product Info */
.product-info {
  margin-top: 15px;
}

.product-title {
  font-size: 1.2rem;
  color: #f8f8f8;
  margin: 10px 0;
}

.product-price {
  font-size: 1rem;
  color: #CCA351; 
  font-family: serif;
}

/* Gold line styles */
.gold-line {
  width: 100%;
  height: 2px;
  background-color: #CCA351;  
  margin: 20px 0;
  opacity: 0;  
  transition: opacity 0.5s ease; 
}

.gold-line.top {
  margin-top: 20px;  
}

.gold-line.bottom {
  margin-top: 40px;  
}

/* Heading style */
.heading {
  text-align: center;
  font-size: 2.8em;
  margin-top: 20px;
  color: #3B3B3B;
  font-family: serif;
  opacity: 0;
  transform: translateY(20px);  
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Artist container */
.artist-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);  
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Individual card style */
.card {
  background-color: #FAF9F6;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  opacity: 0;  
  transform: translateY(20px); 
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Image styling */
.artist-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Quote text */
.quote {
  font-size: 1.2em;
  line-height: 1.5;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  font-family: serif;
}

/* Artist's name and location */
.name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #CCA351;
  font-family: serif;
}

.location {
  font-size: 1em;
  color: #777;
  font-family: serif;
}

.show-visible {
  opacity: 1;
  transform: translateY(0);
}

/*Video section styling */
.video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  font-family: serif;
}

.video-overlay h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.video-overlay p {
  font-size: 2rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  color: #FAF9F6;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.custom-footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.custom-footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #CCA351;
  font-family: serif;
}

.custom-footer-section p,
.custom-footer-section address,
.custom-footer-section ul {
  font-size: 0.9em;
  line-height: 2;
}

.custom-footer-section ul {
  list-style: none;
  padding: 0;
}

.custom-footer-section ul li {
  margin: 5px 0;
}

.custom-footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer-section ul li a:hover {
  color: #aaa; 
}

.custom-footer-section form {
  display: flex;
  gap: 5px;
  justify-content: flex-end; 
  align-items: center; 
}

.custom-footer-section form input[type="email"] {
  padding: 10px;
  width: 70%;
  border: 2px solid #ccc; 
}

.custom-footer-section form input[type="email"]:focus {
  border-color: #CCA351; 
  outline: none; 
}
.custom-footer-section form button {
  padding: 12px 12px;
  background-color: #CCA351;
  color: #333;
  border: none;
  cursor: pointer;
}
.custom-footer-section form button:hover{
  background-color: #b3922c;
}

.custom-footer-section .social-icons a {
  margin: 25px 5px 0 5px;
  display: inline-block;
  color: #fff; 
}

.custom-footer-section .social-icons img {
  width: 25px;
  height: 25px;
}

.custom-footer-section .social-icons a:hover {
  color: #CCA351; 
}

.custom-footer-section a {
  color: #fff; 
  text-decoration: none;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.8em;
  color: #aaa;
}

.payment-methods img {
  width: 50px; 
  height: auto; 
  margin-right: 10px;
  margin-top: 30px;
}

/* Style for the contact form */
.contact-form {
  max-width: 800px; 
  margin: 50px auto;
  padding: 30px; 
  background-color: #f9f9f9;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Class to apply animation when in view */
.contact-form.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Style for form inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 18px; 
  margin-bottom: 25px; 
  font-size: 18px; 
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #3B3B3B;
  outline: none;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
}

.contact-form label {
  color: #CCA351;
  font-weight: bold;
  font-family: serif;
  font-size: 1rem; 
}

.contact-form .form-row input {
  flex: 1; 
}

.contact-form textarea {
  min-height: 120px; 
  resize: vertical;
}

.contact-form .submit-button button {
  width: 100%;
  padding: 18px; 
  background-color: #3B3B3B;
  color: white;
  font-size: 22px; 
  font-family: serif;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .submit-button button:hover {
  background-color: #555;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: serif;
  font-size: 3rem; 
  color: #CCA351;
}

/* Main Layout */
.main-container {
  flex: 1;
  display: flex;
  width: 100%;
}

/* Sidebar Styling */
.sidebar {
  width: 250px;
  background-color: #333;
  color: #fff;
  padding: 20px;
  min-height: 130vh; 
  position: sticky;
  top: 70px; 
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
}

/* Sidebar Title */
.sidebar .sidebar-title {
  font-size: 24px;
  font-weight: bold;
  color: #CCA351;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar .sidebar-category {
  margin-bottom: 20px;
}

.sidebar .category-title {
  font-size: 18px;
  font-weight: bold;
  color: #CCA351;
  padding-bottom: 5px;
  border-bottom: 1px solid #CCA351;
  margin-bottom: 10px;
}

/* Sidebar Links */
.sidebar-link {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-link:hover {
  background-color: #b3922c;
  color: #333;
}

.badge {
  background-color: #CCA351;
  color: #333;
  border-radius: 12px;
  padding: 3px 8px;
  font-size: 12px;
  margin-left: 8px;
}

.sidebar .last-section {
  margin-bottom: 100px; 
}

/* Edit Account Section */
.edit-account-section {
  position: absolute;
  bottom: -10px; 
  width: 90%;
  text-align: left;
}

.edit-account-link {
  display: flex;
  align-items: left;
  justify-content: flex-start;
  color: #b3922c;
  text-decoration: none;
  padding: 10px 20px; 
  font-size: 16px;
  border-radius: 4px;
  position: relative;
  text-decoration: none; 
}

.edit-account-link:hover {
  color: #fff; 
  background-color: #b3922c;
  text-decoration: none; 
}

.account-icon {
  font-size: 20px;
  margin-right: 10px; 
}

.account :hover{
  text-decoration: none;
}

.about-container {
  margin: 20px;
  padding: 20px;
}

.about-intro, .about-mission, .about-platform, .about-opportunities, .about-vision {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.about-intro-image, .about-mission-image, .about-platform-image, .about-opportunities-image {
  width: 50%;
  height: 350px;
  border-radius: 4px;
  margin-right: 20px;
}

.about-intro-text, .about-mission-text, .about-platform-text, .about-opportunities-text, .about-vision-text {
  width: 50%;
}

.about-intro h1, .about-mission h2, .about-platform h2, .about-opportunities h2, .about-vision h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #CCA351;
  font-family: serif;
}

.about-intro p, .about-mission p, .about-platform p, .about-opportunities p, .about-vision p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  font-family: serif;
}

/* By dafult hidden state for each section */
.about-container section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate {
  opacity: 1 !important;
  transform: translateY(0);
}

.section-animate {
  opacity: 1 !important;
  transform: translateY(0);
}

:root {
  --primary-color: #CCA351;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.input-group input[type="text"],
.input-group select,
.input-group textarea,
.input-group input[type="file"],
.input-group input[type="tel"] { 
  width: 100%;  
  padding: 0.75rem;
  border: 1px solid #CCA351;
  border-radius: 0.25rem;
  margin-top: 0.5rem;  
}

#business-info::placeholder {
  font-family: serif; 
}

.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.input-group input[type="file"] {
  padding: 0.5rem;
  width: auto; 
  max-width: 100%;
}

input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

/* Styling for radio buttons and labels */
.input-group div {
  margin-bottom: 10px; 
}

.input-group input[type="radio"] {
  vertical-align: middle; 
  margin-right: 0.5rem; 
}

.input-group label {
  font-weight: normal; 
  display: inline-block;
  vertical-align: middle; 
}

.width-50 {
  width: 50%;
}

.ml-auto {
  margin-left: auto;
}

/* Styles for h2 & Credit Link. */
.text-center {
  font-family: 'Arial Black', sans-serif;
  color: #c69b5b; 
  font-size: 2.5em; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  text-align: center;
  margin: 30px 0;
  white-space: nowrap; 
  overflow: hidden; 
}

.text-center a {
  text-decoration: none;
  font-size: 14px;
  font-family: serif;
  coloR: #777;
}

/* Styles for Progress Bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  margin: 2rem 13em; 
  width: 80%; 
  position: relative;
  counter-reset: step; 
}

.progressbar::before, .progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px; 
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
}

.progress {
  background-color: var(--primary-color);
  width: 0%; 
  transition: 0.3s;
  z-index: -1;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: step; 
}

.progress-step::before {
  content: counter(step); 
  font-size: 1rem;
  font-weight: bold;
  color: #666;
}

.progress-step::after {
  content: attr(data-title); 
  position: absolute;
  top: calc(100% + 0.5rem); 
  font-size: 0.85rem;
  color: #666;
}

.progress-step-active {
  background-color: var(--primary-color);
  color: #fff; 
}

.progress-step-active::before {
  color: #fff; 
}

/* Styles for Form. */
.form {
  width: 60rem;
  margin-left: 200px;
  margin-top: 50px;
  border-radius: 0.35rem;
  padding: 1.5rem;
  max-height: auto; 
  overflow-y: auto;
  scrollbar-width: none; 
}

/* Hide scrollbar for Chrome, Safari, and Edge */
.form::-webkit-scrollbar {
  display: none;
}

/* Styles for input group. */
.input-group {
  margin: 2rem 0;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

@keyframes animate {
  from {
      transform: scale(1, 0);
      opacity: 0;
  }
  to {
      transform: scale(1, 1);
      opacity: 1;
  }
}

.form-step-active {
  display: block;
}

/* Styles for Next and Back Button. */
.btns-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.btn{
  padding:  0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  cursor: pointer;
  margin-right: 600px;
  border-radius: 0.25rem;
  transition: 0.3s;
}

.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.btn-register{
  width: 200px;
}

.button-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: padding 0.3s ease, background-color 0.3s ease;
}
  
.scrolled {
  background-color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px); 
}

.switch-account-link {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

label[for="shop-name"] {
  color: #777;
  font-family: serif;
}

label[for="location"] {
  color: #777;
  font-family: serif;
}

label[for="art-type"] {
  color: #777;
  font-family: serif;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-family: serif;
}

.get {
  font-family: 'Arial Black', sans-serif;
  color: #555; 
  font-size: 1.5em; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  text-align: left;
  margin: 30px 0;
  white-space: nowrap; 
  overflow: hidden; 
}

#switch-account {
  display: block;
  color: #ddd;
  font-size: 20pex;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#switch-account:hover {
  background-color: #b3922c;
  color: #333;
}

.cart-icon {
  font-size: 24px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: #c69b5b;
}

#google_translate_element select {
  font-size: 14px; 
  text-transform: none; 
}

.goog-te-banner-frame.skiptranslate {
  display: none !important; 
}
body {
  top: 0 !important; 
}

#google_translate_element .goog-te-gadget {
  color: inherit !important; 
  font-family: inherit !important; 
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px; 
  background: #b3922c;
  color: white;
  border-radius: 50%;
  padding: 4px 6px; 
  font-size: 12px;
  font-weight: bold;
  display: none; 
}

/* Slide-in Animation */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-in Animation */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}