/* Amazon-like Styling */
:root {
  --primary: #6C5CE7;      /* Modern purple */
  --secondary: #00B894;    /* Teal */
  --dark: #2D3436;
  --light: #F8F9FA;
  --danger: #E17055;
  --daily: #27ae60;
}

* {
 text-decoration: none;
}

a{
  color: inherit;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Amazon Ember', Arial, sans-serif;
  background-color: #eaeaea;
}
.body_register {
    justify-content: center; 
    align-items: center;
}
/* Header / Navbar */
header {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
}
.logo {
    margin-top: 10px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-circle {
  width: 35px;
  height: 35px;
  background-color: #6C5CE7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.auth-form {
  max-width: 400px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-form input {
  border-radius: 8px;
  border: 1px solid #ccc;
}

.auth-form button {
  background: #6C5CE7;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.auth-form button:hover {
  background: #5a4bd8;
}

.logo a {
  font-size: 28px;
  color: #ff9900;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}



.cart-link {
  text-decoration: none;
  font-weight: 500;
  color: black;
}

.login-reg {
  gap: 50px;
}

.login-reg a {
  color: var(--primary);
  text-decoration: none;
  padding-right: 10px;
}

.profile-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-wrapper span{
  color: var(--primary);
}

.profile-circle {
  width: 35px;
  height: 35px;
  background-color: #6C5CE7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logout-btn {
  padding: 5px 10px;
  border: none;
  background: #E17055;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}


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

.search-bar input {
  padding: 6px 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
  outline: none;
}

.search-bar button {
  padding: 6px 12px;
  border: none;
  background-color: var(--secondary);
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-item {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background-color: #f2f2f2;
}

/* LEFT */
.nav-left .logo {
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: #6C5CE7;
}

/* CENTER */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  width: 50%;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.search-bar button {
  padding: 8px 16px;
  border: none;
  background-color: #6C5CE7;
  color: white;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #5a4bd8;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}


/* Categories Nav */
.categories {
  background-color: var(--dark);
  padding: 10px;
  display: flex;
  gap: 15px;
}

.categories a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
}

.categories a:hover {
 color: #70acf5;
}

/* Main Content */
main {
  padding: 20px;
  background-color: #eaeaea;
}

h1 {
  font-size: 34px;
  color: #3a3636;
  margin-bottom: 20px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 33px;
}

.product {
  background-color: white;
  border: 1px solid #ddd;
  padding: 15px;
  width: 200px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.product h2 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product h3 {
  font-size: 12px;

}
.product p {
  color: #b12704;
  font-weight: bold;
}

.product button {
  width: 100%;
  background-color: var(--primary);
  border: 1px solid  var(--primary);
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: #131921;
  color: #ddd;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.auth-form {
  border: 1px solid #ccc;
  background-color: white;
  padding: 20px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.auth-form div {
  margin-bottom: 16px; 
}

.auth-form label {
  display: block;
  margin-bottom: 4px; 
}

.auth-form input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}



.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: black;
}

.carousel-wrapper {
  height: 300px;
  overflow: hidden;
  width: 100%;
}

.carousel-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slides a {
  flex: 0 0 100%;
}

.carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #000;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-5%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* --- Feature Panels Below Slider --- */
.feature-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.panel {
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.panel h2 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.panel-items {
  display: flex;
  gap: 10px;
}

.panel-items div {
  flex: 1;
  text-align: center;
}

.panel-items img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.product-panel {
  background: #fff;
  padding: 10px;
  width: 290px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  border-radius: 5px;
  margin-top: 20px;
}

.product-panel h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-item {
  text-align: center;
}

.panel-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 4px;
}

.panel-item p {
  font-size: 12px;
  margin-top: 5px;
}

.see-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #007185;
  text-decoration: none;
}
.see-more:hover {
  text-decoration: underline;
}



.panel.yellow {
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.panel.yellow button {
  background-color: #ffd814;
  border: 1px solid #fcd200;
  padding: 8px 12px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

.mx-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #131921;
;
  color: #fff;
}

.mx-header {
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #131921;
}

.mx-header img.logo {
  height: 30px;
  margin-right: 30px;
  margin-left: 30px;
}

.mx-header span {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.mx-header-go_to{
  margin-left: 20px;

}
.mx-nav {
  display: flex;
  gap: 30px;
  padding: 10px 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mx-nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
}

.mx-nav a:hover {
  color: #fff;
}

.mx-nav_search_img{
  height: 8px ;
}


.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.banner-carousel-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.banner-carousel-slides a {
  flex: 0 0 100%;
  max-width: 100%;
}

.banner-carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #000;
}

.banner-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  z-index: 10;
  cursor: pointer;
}

.banner-carousel-btn.prev {
  left: 10px;
}

.banner-carousel-btn.next {
  right: 10px;
}
  
.banner-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.banner-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.section {
  margin: 20px;
}

.section h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.thumbnail {
  min-width: 200px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: visible;
}

.thumbnail img {
  width: 100%;
  border-radius: 5px;
  height: 130px;
  transition: 0.3s;
}

.thumbnail :hover{
  transform: scale(1.1);
}


.cs-body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
}

.alerts {
  padding: 20px;
  background-color: #fff;
}

.alert-box {
  border: 2px solid #f0c14b;
  background-color: #fff8e1;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 0.95rem;
}

.alert-box a {
  color: #007185;
  text-decoration: none;
}

.alert-box a:hover {
  text-decoration: underline;
}

.help-main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.help-main h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.help-main h2 {
  font-size: 20px;
  margin-top: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #f8f8f8;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.grid-item img {
  height: 50px;
  margin-bottom: 10px;
}

.grid-item:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}


.apay-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
}

.apay-header {
  background-color: white;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.apay-header .logo {
  height: 30px;
}

.apay-main {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.apay-sidebar {
  background-color: white;
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.apay-sidebar h3 {
  margin-bottom: 5px;
}

.balance {
  color: green;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.apay-sidebar ul {
  list-style: none;
  padding: 0;
}

.apay-sidebar li {
  margin: 10px 0;
}

.apay-sidebar a {
  text-decoration: none;
  color: #007185;
}

.apay-sidebar a:hover {
  text-decoration: underline;
}

.apay-content {
  flex: 1;
}

.apay-section {
  background-color: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.apay-section h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  text-align: center;
}

.icon-grid img {
  height: 40px;
  margin-bottom: 5px;
}

.icon-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.apay-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.apay-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.apay-card {
  height: 180px;
}

.scroll-panel {
  width: 1270px;
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.scroll-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-panel h2 a {
  font-size: 0.9rem;
  color: #007185;
  text-decoration: none;
}

.scroll-wrapper {
  position: relative;
}

.scroll-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.product-img {
  flex: 0 0 auto;
  width: 160px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: #f7f7f7;
}

.product-img img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 4px;
}

.product-img:hover {
  border: 2px solid orange;
  transform: scale(1.02);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-5%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/**
.product-scroll-section {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  background: #f3f3f3;
}

.product-card {
  background: white;
  padding: 15px;
  width: 250px;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
**/

.product-scroll-section {
  display: flex; 
  flex-wrap: wrap; /* optional: use it if you want responsiveness */
  gap: 20px;
}

.product-card {
  /*flex: 1 1 calc(25% - 20px); 4 cards per row */
  flex-shrink: 0;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 290px;
  margin-top: 20px;
}


.product-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.main-product {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #b12704;
  margin-bottom: 5px;
}

.price .mrp {
  color: #565959;
  font-weight: normal;
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-left: 8px;
}

.thumbnail-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 5px;
}

.thumbnail-scroll img {
  width: 55px;
  height: 55px;
  border: 2px solid #ccc;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
}

.thumbnail-scroll :hover {
  border-color: #007185;
}

/* Sign In Banner */
.signin-banner {
  background-color: #f5f6f6;
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.signin-banner h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.signin-button {
  background-color: #ffd814;
  border: 1px solid #fcd200;
  padding: 8px 40px;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;

}
.signin-button :hover { 
  background-color: lch(82.89% 82.95 98.7);

}
.signin-banner p {
  margin-top: 10px;
  font-size: 14px;
}

.signin-banner a {
  color: #007185;
  text-decoration: none;
}

/* Back to Top */
.back-to-top {
  background-color: #37475a;
  text-align: center;
  padding: 10px;
}

.back-to-top a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* Footer */
.amazon-footer {
  background-color: #232f3e;
  color: white;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  margin: 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}

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

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}
 
.footer-legal {
  background-color: #131a22;
  color: #aaa;
  font-size: 12px;
  text-align: center;
  padding: 20px 10px 30px;
  margin-left: 10px;
  margin-right: 10px;
  
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
}

hr {
  color: whitesmoke;
  box-shadow: none;
}



/* Chatbot Main Container */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-height: 450px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Header */
#chatbot-header {
  background: #4a90e2;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

/* Chat body */
#chatbot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #f5f5f5;
  overflow-y: auto;
}

/* Messages */
#chat-messages {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 75%;
  word-wrap: break-word;
}

.bot-message {
  background: #fff;
  border: 1px solid #ddd;
}

.user-message {
  background: #4a90e2;
  color: #fff;
  margin-left: auto;
}

/* Input container */
#chat-input-container {
  display: flex;
  gap: 5px;
}

#chat-input-container input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

#chat-input-container input:focus {
  border-color: #4a90e2;
}

/* Send button */
#chat-input-container button {
  background: #4a90e2;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

#chat-input-container button:hover {
  background: #357ABD;
}

#chat-input-container button img {
  width: 16px;
  height: 16px;
}


.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #6C5CE7;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  font-weight: 500;
}

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


.qty-control {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty-control button {
  padding: 5px 10px;
  font-size: 16px;
}

/* ===============================
   PAYMENT PAGE STYLING
================================= */

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
}

.payment-title {
  text-align: center;
  margin-top: 60px;
  font-size: 28px;
  color: #2d3436;
}

.payment-container {
  width: 400px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.payment-container select {
  width: 100%;
  padding: 12px;
  margin: 20px 0;
  border-radius: 8px;
  border: 1px solid #dfe6e9;
  font-size: 16px;
  outline: none;
}

.payment-container button {
  width: 100%;
  padding: 12px;
  background: #6C5CE7;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.payment-container button:hover {
  background: #5a4bd1;
  transform: translateY(-2px);
}

/* ===============================
   SUCCESS PAGE STYLING
================================= */

.success-container {
  width: 500px;
  margin: 100px auto;
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.success-container h1 {
  color: #2ecc71;
  font-size: 32px;
  margin-bottom: 20px;
}

.success-container a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #6C5CE7;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.success-container a:hover {
  background: #5a4bd1;
}

/* ===============================
   GENERAL BUTTON STYLING
================================= */

button {
  font-family: inherit;
}

button:active {
  transform: scale(0.97);
}

.hidden {
  display: none;
}

.payment-container input {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

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

.card-row input {
  width: 50%;
}

.payment-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}


.secure-line {
  background: #eafaf1;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  color: #2ecc71;
  font-weight: 600;
}

.loading {
  margin-top: 15px;
  color: #6C5CE7;
  font-weight: bold;
}

.payment-container {
  width: 420px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.payment-container input,
.payment-container select {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

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

.card-row input {
  width: 50%;
}

.payment-container button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #6C5CE7;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.payment-container button:hover {
  background: #5a4bd1;
  transform: translateY(-2px);
}

.hidden {
  display: none;
}


.order-card {
  background: white;
  padding: 20px;
  margin: 20px auto;
  width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.tracking {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.track-step {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-bottom: 3px solid #ddd;
  font-size: 13px;
}

.track-step.active {
  border-bottom: 3px solid #6C5CE7;
  color: #6C5CE7;
  font-weight: bold;
}


.tracking-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}

.track-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.track-step .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  margin: auto;
}

.track-step.active .circle {
  background: #6C5CE7;
}

.track-step span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}


.cart-section {
  background: white;
  padding: 20px;
  margin: 30px auto;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cart-summary {
  margin-top: 15px;
  text-align: right;
}

.checkout-btn {
  padding: 10px 20px;
  background: #6C5CE7;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.checkout-btn:hover {
  background: #5a4bd1;
}

.fresh-btn {
  background: #27ae60;
}

.fresh-btn:hover {
  background: #1e874b;
}

.all-btn {
  background: #e67e22;
}

.all-btn:hover {
  background: #ca6a12;
}



.cart-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cart-left {
  width: 140px;
}

.cart-img {
  width: auto;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-right {
  flex: 1;
}

.cart-title {
  margin: 0;
  font-size: 20px;
}

.cart-desc {
  color: #666;
  margin: 8px 0;
  font-size: 14px;
}

.cart-price {
  font-weight: 600;
  margin: 5px 0;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.qty-control button {
  padding: 5px 12px;
  background: #6C5CE7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.qty-control span {
  font-weight: bold;
}

.cart-subtotal {
  font-weight: 600;
  margin-top: 10px;
}

.remove-btn {
  margin-top: 10px;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
}

.remove-btn:hover {
  background: #c0392b;
}




.cart-card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}




.electronics-section {
  display: flex;
  gap: 25px;
  padding: 30px 40px;
  background: #f3f3f3;
}

.electronics-heaing {
  text-align: center;
  background-color: #eaeaea;
  margin-bottom: 0;
}

/* SIDEBAR */
.sidebar {
  width: 220px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  height: fit-content;
}

.sidebar h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.sidebar li:hover {
  color: #ff9900;
}

/* GRID */
.electronics-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: #111; /* dark background makes neon pop */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s ease;
  cursor: pointer;
  border: 2px solid #a020f0; /* neon violet */

  /* Neon Glow */
  box-shadow:
    0 0 5px #a020f0,
    0 0 15px #a020f0,
    0 0 30px #a020f0,
    0 0 60px rgba(160, 32, 240, 0.5);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 10px #a020f0,
    0 0 25px #a020f0,
    0 0 50px #a020f0,
    0 0 80px rgba(160, 32, 240, 0.7);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.category-card h3 {
  font-size: 18px;
  color: #111;
}
 


.category-card {
  animation: neonPulse 2s infinite alternate;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .electronics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    display: none;
  }
}

.computers-nav {
  background-color: #fceeee;
  border-bottom: solid #a020f0 2px;
  height: 32px;
  text-align: center;
  padding-top: 10px;

}

.computers-nav a {
  color: var(--primary);
  padding: 13px;
  text-decoration: none;
}

.amazon-slider-section {
  background: #f3f3f3;
  padding: 30px;
}
.amazon-slider-section h2 {
  text-align: center;
  margin-top: 10px;
  font-size: 28px;
  color: #2d3436;
}


.amazon-slider-container {
  background: #dcdcdc;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: violet solid;
}

.amazon-slider-container-black {
  background: rgb(44, 43, 43);
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: violet solid;
}

.amazon-slider-container-white {
  background: white;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: violet solid;
}

.amazon-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.amazon-slider::-webkit-scrollbar {
  display: none;
}

.amazon-card {
  min-width: 220px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.amazon-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
}

.amazon-card button{
    width: 45%;
  background-color: violet;
  border: 1px solid  violet;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 5px;
}

.card-info {
  padding: 10px;
  background: #f5f5f5;
}

.card-title {
  font-size: 14px;
  margin-bottom: 5px;
  color: #111;
}

.card-price {
  font-weight: bold;
  color: #111;
}

.card-price span {
  text-decoration: line-through;
  color: gray;
  font-weight: normal;
  font-size: 13px;
  margin-left: 5px;
}

.amazon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Arrow Buttons */
.amazon-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-5%);
  background: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}

.amazon-arrow.left {
  left: 10px;
}

.amazon-arrow.right {
  right: 10px;
}

.amazon-card.button{
  border-radius: 8;
}


.category-section {
  background: #f3f3f3;
  padding: 40px 20px;
}

.category-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.category-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-card {
  min-width: 220px;
  background: #fceeee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.category-card p {
  margin-top: 15px;
  font-weight: 500;
  color: #333;
}

.cat-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 6px;
  z-index: 10;
}

.cat-btn.left {
  left: -10px;
}

.cat-btn.right {
  right: -10px;
}





/* SECTION */

.book-slider-section{
display:flex;
align-items:center;
position:relative;
padding:20px 30px;
background:#fff;
margin: 30px;
}

/* SLIDER */

.book-slider{
display:flex;
gap:40px;
overflow-x:auto;
scroll-behavior:smooth;
}

/* hide scrollbar */

.book-slider::-webkit-scrollbar{
display:none;
}

/* CARD */

.book-card{
text-align:center;
cursor:pointer;
min-width:110px;
}

/* IMAGE */

.book-card img{
width:110px;
height:110px;
object-fit:cover;
}


/* TITLE */

.book-card-title p{
margin-top:10px;
font-size:14px;
color:#222;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 40%;
  background: white;
  border: none;
  font-size: 20px;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
}

.arrow.left {
  left: -10px;
}

.arrow.right {
  right: -10px;
}


.section-title-book {
  text-align: center;
  font-size: large;
  font-weight: bold;
  font-size: 28px;
}