/* === Base Colors === */
body {
  background: radial-gradient(circle at center, #1e004e, #000000);
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
}

a {
  color: #b48eff;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffffff;
}

/* === Header === */
header {
  border-bottom: 2px solid #824e8d;
}

header nav a {
  color: #b48eff;
}

header nav a:hover {
  color: #ffffff;
}

/* === PrestaShop Header Elements Override === */
#header,
.header-top,
.header-nav,
#_desktop_top_menu,
#_desktop_logo {
  background-color: #000000 !important;

}

.header-top a {
  color: #ffffff;
}

/* === Gallery Grid === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background-color: #111;
  border: 1px solid #333;
  padding: 1rem;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.gallery-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* === Table Styles === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

table th,
table td {
  padding: 1rem;
  border-bottom: 1px solid #333;
}

table th {
  background-color: #111;
  color: #0004ff;
}

table td {
  background-color: #0a0a0a;
}

/* === Category Section === */
.category-title {
  font-size: 1.2rem;
  border-bottom: 2px solid #b48eff;
  padding-bottom: 0.5rem;
  margin: 2rem 0 1rem;
}

/* === Views & Dates === */
.views-date {
  font-size: 0.75rem;
  color: #888;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #000000; /* black background */
}

::-webkit-scrollbar-thumb {
  background: #c80e7b;
  border-radius: 4px;
  border: #000;
}

/* === Background main screen === */
#wrapper {
  background: transparent;
}

#custom-text {
  background-color: #1e004e; /* Your desired background */
  color: #ffffff;            /* Text color */
  padding: 1rem;
  border: 2px solid #824e8d; /* Border: 2px thick, solid style, pink color */
  border-radius: 10px;       /* Optional rounded corners */
}
/* Optional: Style text inside the block */
#custom-text h2,
#custom-text p {
  color: #ffffff; /* Ensures text inside also gets styled */
}

.products-section-title {
  color: #ffffff;               /* Text color */
  background-color: #1e004e;    /* Background color (optional) */
  border-bottom: 2px solid #c80e7b; /* Optional underline */
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 8px;
}

/* === Footer Base === */
#footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 1rem 1rem 2rem 1rem; /* TOP RIGHT BOTTOM LEFT */
  font-family: 'Poppins', sans-serif;
}

/* === Footer Headings === */
#footer h4 {
  color: #b48eff; /* your theme's light purple */
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* === Footer Links === */
#footer a {
  color: #e0e0e0;
  transition: color 0.3s ease;
  text-decoration: none;
}

#footer a:hover {
  color: #ff39c9; /* neon pink on hover */
  text-decoration: underline;
}

/* === Footer Bottom === */
#footer .footer-bottom {
  color: #888;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* === Contact Us Link in Top Bar === */
#contact-link a {
  color: #b48eff;  /* Purple text */
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact-link a:hover {
  color: #ffffff;
  text-shadow: 0 0 4px #ff4edb;
}


#_desktop_user_info a {
  color: #b48eff;  /* Purple text */
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

#_desktop_user_info a:hover {
  color: #ffffff;
  text-shadow: 0 0 4px #ff4edb;
}

/* === Top Menu Links === */
#_desktop_top_menu .top-menu > li > a.dropdown-item {
  color: #b48eff !important; /* Force purple */
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

#_desktop_top_menu .top-menu > li > a.dropdown-item:hover {
  color: #ffffff !important; /* Force white on hover */
  background-color: rgba(200, 14, 123, 0.2);
  border-radius: 6px;
  text-shadow: 0 0 5px #ff4edb;
}

/* === Rounded Corners for Image Slider === */
#carousel,
#carousel img,
.carousel-inner,
.carousel-item {
  border-radius: 16px;
  overflow: hidden;
}

/* === Product Card Styling === */
.product-miniature {
  border: 1px solid #824e8d; /* or #b48eff for a lighter purple */
  border-radius: 12px;
  padding: 1rem;
  background-color: #0a0a0a; /* dark background inside */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.product-miniature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(200, 14, 123, 0.5); /* matches your accent */
}

/* Optional: spacing between product cards */
.products .product-miniature {
  margin-bottom: 2rem;
}

/* === Breadcrumb Wrapper === */
.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* === Breadcrumb Links === */
.breadcrumb a span {
  color: #b48eff;
  transition: color 0.3s;
}

.breadcrumb a:hover span {
  color: #ffffff;
  text-decoration: underline;
}

/* === Breadcrumb Text (last item, not a link) === */
.breadcrumb li span {
  color: #e0e0e0;
}

/* === Separator Arrow ( > ) === */
.breadcrumb li {
  display: inline-block;
  margin-right: 6px;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  color: #824e8d;
  margin-left: 6px;
}

/* === Product Title Styling === */
h1.h1 {
  color: #ffffff;         /* Light purple text */
  font-size: 2rem;        /* Adjust size as needed */
  font-weight: 600;       /* Medium-bold */
  text-shadow: 1px 1px 2px #000000;  /* Subtle glow */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tax-shipping-delivery-label {
  display: none !important;
}

.product-description {
  background-color: transparent; /* or use rgba(255, 255, 255, 0.05) if you want a faint background */
  padding: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 1rem;
  color: #ffffff;
}

.control-label {
  color: #ffffff !important;
}

#product-availability {
  color: #ffffff;
}

#product-availability::after {
  color: #ffffff !important;
}

/* Make the "Share" label white */
.social-sharing > span {
  color: #ffffff;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Style the social media icons/text */
.social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.social-sharing ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

/* Optional hover color effect */
.social-sharing ul li a:hover {
  color: #c80e7b;
}

.add-to-cart {
  background-color: #c80e7b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s, transform 0.2s;
}

/* Prevent blue color on hover */
.add-to-cart:hover {
  background-color: #c80e7b !important;  /* stay pink/purple */
  color: #ffffff !important;            /* stay white */
  transform: translateY(-2px);
  box-shadow: 0 0 12px #ff00c8, 0 0 24px #ff00c8, 0 0 36px #ff00c8;
}

/* Electric glow effect */
.add-to-cart::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 80%);
  animation: electricGlow 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.add-to-cart:hover::before {
  opacity: 1;
}

.add-to-cart > * {
  position: relative;
  z-index: 2;
}

@keyframes electricGlow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}

.blockcart.cart-preview .header {
  color: #000000 !important;
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Shopping cart icon */
.blockcart.cart-preview .material-icons.shopping-cart {
  color: #000000 !important;
  font-size: 20px;
}

/* Product count */
.blockcart.cart-preview .cart-products-count {
  color: #000000 !important;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Hover style */
.blockcart.cart-preview:hover {
  background-color: #f8f8f8;
  color: #000000;
  transition: background-color 0.3s ease;
}

.comments-note > span {
  color: #ffffff;
}

a.link-comment {
  color: #ffffff;
}

a.link-comment i.material-icons.chat {
  color: #ffffff;
}

a.link-comment:hover {
  color: #b48eff;
}

a.link-comment:hover i.material-icons.chat {
  color: #b48eff;
}

.comments-nb {
  color: #ffffff;
}

.comments-nb i.material-icons.chat {
  color: #ffffff;
}

#empty-product-comment .btn-comment {
  background-color: #c80e7b;
  color: #ffffff;
  border: 2px solid #b48eff;
  border-radius: 12px;
  font-weight: bold;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: none;
}

#empty-product-comment .btn-comment i.material-icons {
  vertical-align: middle;
  margin-right: 6px;
  color: #ffffff;
}

#empty-product-comment .btn-comment:hover {
  background-color: #a50864;
  color: #ffffff;
  border-color: #b48eff;
}

button.post-product-comment {
  background-color: #c80e7b;
  color: #ffffff;
  border: 2px solid #b48eff;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

button.post-product-comment:hover {
  background-color: #a30a63;
  color: #ffffff;
}

.product-comment-list-item {
  background-color: #111;
  color: #fff;
  border: 2px solid #b48eff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.product-comment-list-item .comment-infos {
  border-right: 1px solid #444;
}

.product-comment-list-item .comment-date,
.product-comment-list-item .comment-author {
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 8px;
}

.product-comment-list-item .comment-content .h4 {
  color: #ff80c0;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-comment-list-item .comment-content p {
  color: #e0e0e0;
}

.product-comment-list-item .comment-buttons a {
  color: #b48eff;
  margin-right: 10px;
  transition: color 0.3s;
}

.product-comment-list-item .comment-buttons a:hover {
  color: #ff80c0;
}

/* === Product Tabs Wrapper === */
.tabs {
  background-color: #0a0a0a;
  border: 2px solid #b48eff;
  border-radius: 12px;
  margin-top: 2rem;
  padding: 1.5rem;
  color: #ffffff;
}

/* Tabs navigation bar (tab links) */
.tabs .nav-tabs {
  border-bottom: 1px solid #824e8d;
  margin-bottom: 1rem;
}

.tabs .nav-tabs .nav-link {
  color: #b48eff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 1rem;
  background: transparent;
}

.tabs .nav-tabs .nav-link.active,
.tabs .nav-tabs .nav-link:hover {
  color: #ffffff;
  background-color: #1e004e;
  border-radius: 6px;
  text-shadow: 0 0 4px #ff4edb;
}

/* Tab content container */
.tabs .tab-content {
  background-color: transparent;
  padding-top: 1rem;
}

/* Specific tab sections like Description, Product Details */
.tabs .tab-pane {
  color: #e0e0e0;
}

.tabs {
  width: 100%;
}

/* Style for product detail labels like Reference, Brand, etc. */
.product-details .label,
.js-product-details .label {
  color: #ff80c0 !important; /* Brighter pink for visibility */
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

/* Reduce top spacing in product details section */
.js-product-details > div {
  margin-top: 0.5rem; /* reduce vertical spacing between blocks */
}

/* Optional: remove padding/margin from the whole tab */
#product-details {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Entire Quick View background */
.quickview {
  background-color: #1e004e !important; /* Matches your theme purple base */
  color: #ffffff; /* Just in case fallback */
  border-radius: 12px;
  padding: 1.5rem;
}

/* Product title inside Quick View */
.quickview .product-title,
.quickview h1 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Availability and quantity info */
.quickview .product-quantities,
.quickview .product-reference,
.quickview .product-availability-date,
.quickview .product-out-of-stock {
  background-color: #0f0032;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: 0.75rem;
  color: #ffffff;
}

/* Fix label text inside Quick View */
.quickview .label {
  color: #ffffff;
  font-weight: bold;
  margin-right: 5px;
}

/* Make sure dropdowns don't go unreadable */
.quickview select {
  background-color: #0a0a0a;
  color: #ffffff;
  border: 1px solid #824e8d;
}

/* === QUICK VIEW MODAL STYLING === */

/* Outer modal container */
.quickview .modal-content {
  background-color: #1e004e !important;
  color: #ffffff;
  border-radius: 16px;
  border: 2px solid #824e8d;
  box-shadow: 0 0 20px rgba(200, 14, 123, 0.3);
}

/* Product title */
.quickview h1.h1 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Description text */
.quickview #product-description-short {
  color: #ddddff;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Labels like "Quantity", "Reference", "Pin Shape" */
.quickview .control-label,
.quickview .label {
  color: #ff8ce6;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Availability (in stock text) */
.quickview #product-availability {
  color: #8fffda;
  margin-top: 0.75rem;
  display: inline-block;
}

/* Price styling */
.quickview .product-price {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Variant dropdown */
.quickview select.form-control {
  background-color: #10002b;
  color: #ffffff;
  border: 1px solid #824e8d;
}

/* Quantity input */
.quickview .input-group input[type="number"] {
  background-color: #0a0a0a;
  color: #000000 !important;
  border: 1px solid #824e8d;
}

/* Add to cart button (inherits your theme style) */
.quickview .add-to-cart {
  background-color: #c80e7b;
  color: #ffffff;
}

/* Footer section (share links) */
.quickview .modal-footer {
  background-color: #0f002a;
  border-top: 1px solid #824e8d;
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Share label */
.quickview .social-sharing > span {
  color: #ffffff;
}

/* Share links */
.quickview .social-sharing ul li a {
  color: #b48eff;
}

.quickview .social-sharing ul li a:hover {
  color: #ffffff;
}

#content.page-content.card.card-block {
  background: #ffffff;
  border: 2px solid #b48eff; /* Purple border */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Optional soft shadow */
}

.page-contact .contact-rich {
  display: none !important;
}

.block-category.card.card-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.block-category h1.h1 {
  color: #fff; /* or your theme's headline color */
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.block-category-inner #category-description {
  color: #ccc; /* soften the description text */
  font-size: 1rem;
  max-width: 800px;
}

.block-categories {
  padding: 1rem 1.5rem;
  background: none;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.block-categories .category-top-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-categories .category-top-menu > li > a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.block-categories .category-top-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.block-categories .category-sub-menu {
  list-style: none;
  margin: 0.5rem 0 0 1rem;
  padding: 0;
}

.block-categories .category-sub-menu li a {
  display: block;
  padding: 0.4rem 1rem;
  color: #ddd;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.3rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.block-categories .category-sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.block-categories .collapse-icons i {
  color: #ccc;
  font-size: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3rem;
  cursor: pointer;
}

.block-categories .collapse.show {
  margin-top: 0.5rem;
}

#category-description,
#category-description p {
  color: #fff !important;
}

.total-products p {
  color: #fff !important;
}

span.sort-by {
  color: #fff !important;
}

/* === Outer Cart Container Styling === */
.cart-container {
  background-color: #0a0a0a; /* dark background */
  border: 2px solid #824e8d; /* purple border */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 12px rgba(200, 14, 123, 0.3); /* subtle pink glow */
  margin-bottom: 2rem;
  color: #ffffff; /* now fully white */
}

.cart-container a.label {
  color: #b48eff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cart-container a.label:hover {
  color: #b48eff;
  text-shadow: 0 0 5px #ff4edb; /* neon pink glow on hover */
}

.cart-container .product-price strong {
  color: #ffffff;
  font-weight: bold;
}

.cart-container i.material-icons.float-xs-left {
  color: #ff4d4d; /* bright red */
  transition: color 0.3s ease;
}

.cart-container i.material-icons.float-xs-left:hover {
  color: #ff0000; /* deeper red on hover */
}

/* === Cart Right Summary Panel === */
.cart-grid-right {
  background-color: #0a0a0a;
  border: 2px solid #824e8d;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 12px rgba(200, 14, 123, 0.3);
  color: #ffffff;
}

/* Remove default white background from Presta card */
.cart-summary.card {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Subtotals (1 item, Shipping) */
.cart-detailed-subtotals {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-bottom: 1.5rem;
}

.cart-detailed-subtotals .label,
.cart-detailed-subtotals .value {
  color: #ffffff !important;
  font-weight: 600;
}

/* Totals row */
.cart-summary-totals .cart-summary-line.cart-total {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.cart-summary-totals .label,
.cart-summary-totals .value {
  color: #ffffff;
  font-weight: bold;
}

/* === Checkout Button === */
.cart-detailed-actions .btn.btn-primary {
  background-color: #c80e7b;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 200, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-detailed-actions .btn.btn-primary:hover {
  background-color: #a50a63;
  box-shadow: 0 0 16px rgba(255, 0, 200, 0.6);
  color: #fff;
}

/* === Payment Info and Logos === */
#ps_checkout-payment-method-logo-block-container {
  margin-top: 1.5rem;
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
}

#ps_checkout-payment-method-logo-block-title img {
  filter: invert(100%);
  margin-right: 6px;
  vertical-align: middle;
}

#ps_checkout-payment-method-logo-block-title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Payment Logos */
#ps_checkout-payment-method-logos-container .paypal-mark {
  background-color: #ffffff;
  border-radius: 4px;
  margin: 4px;
  padding: 4px 6px;
  display: inline-block;
  border: 1px solid #ccc;
}

#ps_checkout-payment-method-logos-container img {
  height: 20px;
  vertical-align: middle;
}

/* Optional: lighten logo area slightly */
#ps_checkout-payment-method-logos-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.5rem;
}

.cart-grid-body a.label {
  color: #b48eff !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cart-grid-body a.label:hover {
  color: #b48eff !important;
  text-shadow: 0 0 4px #ff4edb;
}

.cart-grid-body a.label i.material-icons {
  font-size: 1.2rem;
}

/* ---- Only one border now: on #customer-form ---- */
.page-content {
  background-color: transparent !important;
  padding: 0;
  border: none !important;
  box-shadow: none !important;
}

/* ---- Form wrapper styling ---- */
#customer-form {
  background-color: #0a0a0a;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #a23bb9;
  box-shadow: 0 0 20px rgba(162, 59, 185, 0.4); /* Keep this glow if you like */
  color: #fff;
}

/* ---- Remove default white backgrounds from wrappers ---- */
#wrapper,
#main,
.container,
#content {
  background-color: transparent !important;
}

/* ---- Inputs ---- */
#customer-form input.form-control {
  background-color: #1a1a1a;
  border: 1px solid #555;
  color: #fff;
}

#customer-form input.form-control:focus {
  border-color: #a23bb9;
  box-shadow: 0 0 5px rgba(162, 59, 185, 0.4);
  background-color: #222;
}

/* ---- Labels and comments ---- */
#customer-form label {
  color: #fff;
}

#customer-form .form-control-comment {
  color: #bbb;
  font-size: 0.85rem;
}

/* ---- Radio buttons ---- */
#customer-form .custom-radio input[type="radio"] + span {
  border: 1px solid #a23bb9;
}

#customer-form .custom-radio input[type="radio"]:checked + span {
  background-color: #a23bb9;
}

/* ---- Password show buttons ---- */
#customer-form .input-group-btn .btn {
  background-color: #a23bb9;
  color: #fff;
  border-radius: 0 5px 5px 0;
  padding: 0.5rem 1rem;
}

/* ---- Submit button ---- */
#customer-form .form-control-submit {
  background-color: #e6007e;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  transition: background 0.3s ease;
}

#customer-form .form-control-submit:hover {
  background-color: #c9006c;
}

/* ---- Checkbox text ---- */
#customer-form .custom-checkbox label {
  color: #fff;
}

#customer-form .custom-checkbox em {
  color: #bbb;
}

/* === Order Details Page Theming === */

/* Base background and text */
.page-content,
#content-wrapper,
#main,
#content,
#order-infos,
#order-history,
.addresses,
#ps_checkout-displayOrderDetail,
.order-items,
.order-totals,
.order-message-form,
.page-footer,
.box,
.table,
thead,
tfoot {
  background-color: #121212 !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
}

/* Apply neon border to all boxed sections */
.box {
  border: 2px solid #b368f9 !important;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}

/* Headings */
h1, h3, h4, strong, .card-title {
  color: white !important;
}

/* Labels and pill-style badges */
.label.label-pill {
  background-color: #b368f9 !important;
  color: white !important;
}

/* Links */
a {
  color: #b368f9;
}
a:hover {
  color: #d3a8ff;
  text-decoration: underline;
}

/* Buttons */
.button-primary,
.btn.btn-primary,
.form-control-submit {
  background-color: #b368f9 !important;
  border: none;
  color: white !important;
  border-radius: 8px;
}
.button-primary:hover,
.btn.btn-primary:hover,
.form-control-submit:hover {
  background-color: #a04eea !important;
}

/* Tables */
.table thead th,
.table td,
.table th {
  background-color: #1e1e1e !important;
  color: white !important;
  border: 1px solid #b368f9 !important;
}

/* Select and textarea */
select.form-control,
textarea.form-control,
input.form-control {
  background-color: #1e1e1e;
  color: white;
  border: 1px solid #b368f9;
  border-radius: 8px;
}

/* Contact link */
a.contact-us {
  display: inline-block;
  margin-top: 10px;
  color: #b368f9;
}

/* Back to account / home links */
.page-footer .account-link {
  color: #b368f9;
}
.page-footer .account-link:hover {
  color: #d3a8ff;
}

/* Payment Gateway Info Container */
#ps_checkout-displayOrderDetail {
  background-color: #0e0e0e;
  border: 1px solid #b368f9;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 10px #b368f9;
  margin-top: 20px;
}

/* Title */
#ps_checkout-displayOrderDetail h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

/* Definition list container */
.definition-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each row in the list */
.definition-pair {
  display: flex;
  justify-content: space-between;
  background-color: #1a1a1a;
  border: 1px solid #b368f9;
  border-radius: 8px;
  padding: 10px 15px;
  color: #e8e8ff; /* light violet-white */
  font-size: 15px;
}

/* Label and value styling */
.definition-label {
  font-weight: bold;
  color: #ffffff;
}

.definition-value {
  color: #e8e8ff;
  text-align: right;
}

/* Contact link */
#ps_checkout-displayOrderDetail a.contact-us {
  display: block;
  margin-top: 20px;
  color: #b368f9;
  text-decoration: none;
  font-weight: bold;
}

#ps_checkout-displayOrderDetail a.contact-us:hover {
  text-decoration: underline;
}

#ps_checkout-displayOrderDetail dt,
#ps_checkout-displayOrderDetail dd {
  color: #000000;
}

/* Main address card */
#content .address {
  background-color: #111; /* deep dark background */
  border: 2px solid #9b4dff; /* neon purple border */
  border-radius: 1rem;
  padding: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Address heading */
#content .address h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Actual address text */
#content .address address {
  color: #ffffff;
  line-height: 1.6;
}

/* Footer buttons */
#content .address-footer a {
  color: #ffffff;
  margin-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

#content .address-footer a i {
  margin-right: 0.4rem;
  font-size: 1.1rem;
}

/* Hover effect */
#content .address-footer a:hover {
  color: #9b4dff;
}

/* "Create new address" link */
.addresses-footer a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}

.addresses-footer a i {
  margin-right: 0.4rem;
}

/* Optional: spacing fix if layout is tight */
#content .col-lg-4,
#content .col-md-6,
#content .col-sm-6 {
  padding: 1rem;
}

.addresses-footer a {
  color: #ffffff;
}

.addresses-footer a i.material-icons {
  color: #ffffff;
}

.addresses-footer a span {
  color: #ffffff;
}

.psgdprinfo17 {
  background-color: #111;
  border: 2px solid #8000ff;
  border-radius: 12px;
  padding: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.psgdprinfo17 h2 {
  color: #ffffff;
  border-bottom: 1px solid #8000ff;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.psgdprinfo17 p {
  color: #dddddd;
}

.psgdprinfo17 a.psgdprgetdatabtn17 {
  display: inline-block;
  background-color: #8000ff;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  margin: 0.5rem 1rem 0.5rem 0;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}

.psgdprinfo17 a.psgdprgetdatabtn17:hover {
  background-color: #a34dff;
  color: #ffffff;
}

select.form-control-select {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border: 1px solid #824e8d !important;
}

/* === Currency Selector Desktop === */
.currency-selector #currency-selector-label {
  color: #ffffff; /* keep label white to match your header */
  font-weight: 600;
  margin-right: 5px;
}

.currency-selector .btn-unstyle {
  background-color: #ffffff; /* white background */
  border: 2px solid #b48eff; /* purple border */
  border-radius: 8px;
  padding: 5px 10px;
  color: #000000; /* black text */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.currency-selector .btn-unstyle:hover {
  border-color: #ff4edb; /* neon pink hover border */
  box-shadow: 0 0 6px #ff4edb;
}

.currency-selector .expand-more {
  color: #000000; /* black text inside button */
}

.currency-selector .material-icons.expand-more {
  color: #000000; /* black arrow icon */
  font-size: 18px;
}

/* Dropdown menu styling */
.currency-selector .dropdown-menu {
  background-color: #ffffff; /* white dropdown */
  border: 2px solid #b48eff;
  border-radius: 8px;
  padding: 0;
}

.currency-selector .dropdown-menu .dropdown-item {
  color: #000000; /* black text */
  padding: 8px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.currency-selector .dropdown-menu .dropdown-item:hover {
  background-color: rgba(200, 14, 123, 0.2); /* light pink highlight */
  color: #000000;
}

/* Current currency highlight */
.currency-selector .dropdown-menu .current a {
  font-weight: bold;
  color: #c80e7b;
}

/* === Currency Selector Mobile (<select>) === */
.currency-selector select {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #b48eff;
  border-radius: 8px;
  padding: 5px 10px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
}

.currency-selector select option {
  background-color: #ffffff;
  color: #000000;
}
