:root {
    --bg1: rgb(21, 38, 66, 0.75);
    --bg2: rgb(10, 11, 20);
    --bg3: rgb(28, 18, 59, 0.75);
    --bg4: #0e0e26;
    --button1: #2a61e4;
    --button2: #7e22ce;
    --button3: #055a8b;
    --button4: var(--weblutions);
    --buttonSolid1: rgb(10, 11, 20);
    --buttonSolid2: rgb(22, 25, 46);
    --heroBlue: #5d9df7;
    --heroBlueTag: rgb(72, 132, 204);
    --heroBlueTagTrans: rgba(47, 106, 201, 0.1);
    --lime: lime;
    --heroGreen: rgb(0, 190, 16);
    --heroGreenTag: rgb(0, 190, 16);
    --heroGreenTagTrans: rgb(0, 190, 16, 0.1);
    --heroOrangeTag: rgb(246, 110, 26);
    --heroOrangeTagTrans: rgb(246, 110, 26, 0.1);
    --weblutionsTrans: #1290ded0;
    --formbg: rgb(10, 11, 20);
    --formborder: rgba(47, 106, 201, 0.1);
    --formfocus: rgb(72, 132, 204)
}

body {
    background-image: unset;
    background: linear-gradient(130deg,var(--bg1) 0,var(--bg2) 50%,var(--bg3) 100%);
    background-color: var(--bg2);
    background-repeat: no-repeat;
    background-attachment: fixed
}

.convertli,.webGreyText,p {
    color: #bec2c7
}

header {
    border-radius: 1.5rem
}

button,input,select,textarea {
    border-radius: .75rem
}

.glass {
    position: relative;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(2px) saturate(180%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(31,38,135,.2),inset 0 4px 20px rgba(255,255,255,.075);
}

.weblutions-logo-glow {
    filter: drop-shadow(0 0 1.5rem var(--weblutionsTrans))
}

.weblutions-white-glow {
    filter: drop-shadow(0 0 .5rem rgb(209 213 219 / 1))
}

.weblutions-button-glow {
    transition: all .25s ease
}

.weblutions-button-glow:hover {
    filter: opacity(90%)
}

.headerButton {
    padding-left: 1rem;
    padding-right: 1rem
}

.weblutions-align-to-bottom {
    display: flex;
    flex-direction: column
}

.weblutions-align-to-bottom>:last-child {
    margin-top: auto
}

.weblutions-cta {
    position: relative;
    width: 99.7vw;
    left: 50%;
    right: 50%;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(90deg,var(--button1),var(--button2),var(--button1));
    z-index: 1;
    margin: 4rem -50vw
}

.dropdown-content {
    background-color: var(--heroBlueTagTrans);
    width: unset;
    padding: .5rem;
    border-radius: .5rem
}

.dropdown:hover .dropdown-content {
    display: flex
}

.dropdown-content a {
    border-radius: .25rem;
    width: 100%;
    padding: .5rem .8rem;
    transition: color .25s ease;
    text-align: left
}

.dropdown-content a:hover {
    background-color: transparent!important;
    color: var(--button1)!important
}

.dropdown>a,.headerButton {
    padding: .25rem .5rem;
    border-bottom: 2px transparent solid;
    border-radius: 0;
    transition: all .25s ease
}

.dropdown:hover,.headerButton:hover {
    background-color: transparent!important;
    color: var(--button1)
}

@media (max-width: 736px) {
    header {
        display:none!important
    }
}

.animation-float {
    animation: floatDiv 5s infinite ease-in-out alternate
}

@keyframes floatDiv {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-1rem)
    }
}

/* Hero section */
.hero {
  text-align: center;
  padding: 8rem 2rem 6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(111, 168, 255, 0.2);
}

.hero p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  color: #d6d9df;
}

/* Divider line */
.divider {
  height: 1px;
  width: 60%;
  margin: 4rem auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* Section titles */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #7aa9ff, #d9a3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.card p {
  color: #cfd3da;
  font-size: 1rem;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(90deg, var(--button1), var(--button2));
  color: #fff;
  border-radius: 2rem;
  margin: 5rem auto 2rem;
  width: 85%;
  max-width: 1000px;
  box-shadow: 0 0 40px rgba(91, 129, 255, 0.3);
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: #eaeaea;
  margin-bottom: 2rem;
}

.btn {
  background: #fff;
  color: var(--button2);
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background: rgba(255,255,255,0.85);
  transform: scale(1.05);
}

/* STORE */
/* ==== ELEGANT STORE GRID ==== */

.store-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.store-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.store-search {
  margin: 0 auto 2rem;
  max-width: 400px;
}

.store-search input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.store-search input:focus {
  border-color: var(--heroBlue);
  box-shadow: 0 0 10px rgba(72,132,204,0.2);
}

.tagButton {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.tagButton:hover {
  background: var(--button1);
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
  padding: 2rem 0;
}

.store-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  color: #eaeaea;
  transition: all 0.35s ease;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px) saturate(180%);
  margin: 0;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}

.store-img-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.store-img-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.store-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.store-price-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.store-card h3 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

.store-card .price {
  margin-top: 0.5rem;
  color: var(--heroBlue);
  font-weight: 500;
}

.store-card .desc {
  color: #bfc3c9;
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  min-height: 3.5rem;
}

.store-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
  padding: 0.7rem 1.4rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--button1), var(--button2));
  color: #fff;
  box-shadow: 0 0 10px rgba(84, 137, 255, 0.25);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(84, 137, 255, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.05);
}

/*  STORE VIEW */
/* ==== PRODUCT PAGE ELEGANT STYLE ==== */

.product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.product-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px) saturate(180%);
}

.product-image {
  flex: 1 1 45%;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.product-gallery {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.product-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-gallery img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-info {
  flex: 1 1 50%;
  color: #f1f3f6;
}

.product-info h1 {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heroBlue);
  margin-bottom: 1rem;
}

.product-tag {
  font-size: 0.95rem;
  color: #b9bbbe;
  margin-bottom: 1rem;
}

.product-warning {
  color: #ec872e;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.product-description {
  line-height: 1.7;
  color: #cfd3da;
  font-size: 1rem;
}

.product-credits h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: var(--heroBlue);
}

.reviews-section {
  margin-top: 5rem;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #7aa9ff, #d9a3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.review-card {
  padding: 2rem;
  border-radius: 1rem;
  max-width: 350px;
  text-align: center;
}

.review-user {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  object-fit: cover;
}

.review-card .stars {
  color: var(--heroBlue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-card .comment {
  font-size: 0.95rem;
  color: #cfd3da;
  margin-bottom: 0.5rem;
}

.review-card .author {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

/* === DROPDOWN PULSANTI ELEGANTE === */
.dropdown-plain {
  position: relative;
  display: inline-block;
}

.dropdown-plain-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 40, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.5rem;
  min-width: 180px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.dropdown-plain-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 0.9rem;
}

.dropdown-plain-content a:hover {
  background: linear-gradient(90deg, var(--button1), var(--button2));
}

.dropdown-plain:hover .dropdown-plain-content {
  display: block;
}

/* ==== TEAM SECTION ELEGANT ==== */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.team-subtitle {
  color: #cfd3da;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-card {
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px) saturate(180%);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.15);
}

.team-img-container {
  position: relative;
  margin-bottom: 1.2rem;
}

.team-img-container img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 25px rgba(90, 140, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(150, 100, 255, 0.5);
}

.team-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #fff;
}

.team-role {
  font-size: 0.95rem;
  color: var(--heroBlue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.9rem;
  color: #cfd3da;
  line-height: 1.6;
}

/* ==== REVIEWS SECTION ELEGANT ==== */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
  color: #fff;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.reviews-subtitle {
  color: #cfd3da;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.average-rating {
  color: #f5c60d;
  font-weight: 600;
}

.btn-review {
  display: inline-block;
  background: linear-gradient(90deg, var(--heroBlue), var(--button2));
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(122,169,255,0.3);
}

.btn-review:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(176,132,255,0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px) saturate(180%);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 15px rgba(122,169,255,0.25);
}

.review-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.review-product {
  color: var(--heroBlue);
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.stars i {
  margin-right: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: #cfd3da;
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

.review-link {
  text-decoration: none;
  color: var(--heroBlue);
  font-weight: 500;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: var(--button2);
}

/* TOS Section */
.tos-section {
  color: #e5e7eb;
}

.tos-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tos-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(111, 168, 255, 0.2);
}

.tos-subtitle {
  font-size: 1.1rem;
  color: #cfd3da;
  margin-bottom: 1.5rem;
}

.tos-content {
  line-height: 1.75;
  color: #d1d5db;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 2.5rem;
  backdrop-filter: blur(8px) saturate(180%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tos-content h2,
.tos-content h3 {
  color: #fff;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #86b7ff, #c39fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tos-content p {
  margin: 0.75rem 0;
  color: #d1d5db;
}

.store-titles-section {
  color: #e5e7eb;
  text-align: center;
}

.store-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(111, 168, 255, 0.2);
  margin-bottom: 1.5rem;
}

.product-list {
  text-align: left;
}

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

.product-item {
  margin: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.product-link {
  font-size: 1.15rem;
  color: #bfc3ca;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: var(--heroBlue);
}

.no-products {
  color: #aaa;
  font-style: italic;
  margin-top: 1.5rem;
}

.cart-title {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cart-subtitle {
  color: #cfd3da;
  margin-bottom: 2rem;
}

.cart-image {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.cart-link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cart-link:hover {
  color: var(--heroBlue);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-price {
  font-weight: 600;
  color: #e3e6eb;
}

.remove-btn {
  color: #ff6666;
  transition: 0.3s ease;
}
.remove-btn:hover {
  color: #ff4444;
}

.checkout {
  color: #e3e6eb;
}

.promo-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.promo-form input {
  flex: 1;
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-small {
  background: var(--button2);
  border: none;
  border-radius: 0.75rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease;
}
.btn-small:hover {
  background: var(--button1);
}

.error-text { color: #ff6666; }
.success-text { color: #00cc7a; }

.tos-check label a {
  color: var(--heroBlue);
  text-decoration: none;
}
.tos-check label a:hover {
  text-decoration: underline;
}

.cart-title {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7aa9ff, #b084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.cart-subtitle {
  color: #cfd3da;
  margin-bottom: 2rem;
}

.cart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cart-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.cart-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.cart-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.cart-card-content {
  text-align: center;
}

.cart-item-title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: #9fc1ff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

.cart-item-sub,
.cart-item-note {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin: 0.25rem 0;
}

.cart-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.btn-small {
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  background: var(--button1);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-small:hover {
  background: var(--button2);
}

.cart-summary {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1.25rem;
}

.cart-total {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--button2);
}

/* ===== LuisDev — Cart single big card styles (scoped) ===== */

.luis-cart-section { padding-bottom: 3rem; }

.luis-cart-card {
  --luis-card-padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 12px 34px rgba(2,8,23,0.6);
}

.luis-cart-title {
  font-weight: 700;
  font-size: 2.2rem;
  background: linear-gradient(90deg, var(--heroBlue), var(--button2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luis-modern-table th { color: #bfc7d0; font-weight:700; font-size:0.95rem; padding:0.6rem 1rem; text-align:left; }

.luis-modern-table td {
  padding: 0.9rem 1rem;
  background: transparent;
  border-radius: 10px;
  vertical-align: middle;
  transition: transform .18s ease, background .18s ease;
}


.luis-btn-outline {
  display:inline-block;
  background: rgba(255,255,255,0.02);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  text-decoration: none;
  transition: all .18s ease;
}
.luis-btn-outline:hover { transform: translateY(-3px); background: rgba(255,255,255,0.04); }

.luis-btn-danger {
  display:inline-block;
  background: rgba(255,80,80,0.08);
  color: #ff9b9b;
  border: 1px solid rgba(255, 80, 80, 0.685);
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  text-decoration: none;
  transition: all .18s ease;
}
.luis-btn-danger:hover { transform: translateY(-3px); background: rgba(255,80,80,0.12); color:#fff; }

.luis-btn-small {
  background: linear-gradient(90deg, var(--button1), var(--button2));
  color: #fff;
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  cursor: pointer;
}
.luis-btn-small:hover { transform: translateY(-3px); background: rgba(255,255,255,0.04); }

/* responsive tweaks (do not override global header/footer) */
@media (max-width: 900px) {
  .luis-modern-table thead { display:none; }
  .luis-modern-table, .luis-modern-table tbody, .luis-modern-table tr, .luis-modern-table td { display:block; width:100%; }
  .luis-modern-table td { margin-bottom: 0.8rem; }
  .luis-modern-table td:first-child { margin-top: 0.2rem; }
  .luis-cart-card { padding: 1rem; }
}

/* small utility */
.no-products { color: #bfc3c9; font-style:italic; }

/* === Fix alignment for discount input & Apply button === */
form[action="/backend/cart/addpromo"] {
  display: flex;
  align-items: center; /* <-- centra verticalmente */
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

form[action="/backend/cart/addpromo"] input[type="text"] {
  flex: 1;
  height: 45px; /* altezza coerente */
  line-height: 45px;
  padding: 0 0.9rem;
  border-radius: 0.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.15s ease;
}

form[action="/backend/cart/addpromo"] input[type="text"]:focus {
  outline: none;
  border-color: var(--button1);
  background: rgba(255,255,255,0.05);
}

form[action="/backend/cart/addpromo"] .luis-btn-small {
  height: 45px; /* uguale all’input */
  line-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
}

.luis-cart-card form[action="/backend/cart/addpromo"] {
  justify-content: center;
}

/* === Profile Page (same glass look as Cart) === */
.profile-section {
  margin-top: 1rem;
}

.tab-btn {
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all .3s ease;
  color: #ccc;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.tab-btn.active {
  background: linear-gradient(90deg, var(--button1), var(--button2));
  color: #fff;
  box-shadow: 0 0 12px rgba(91,129,255,0.3);
}

.cart-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-small {
  display: inline-block;
  background: linear-gradient(90deg, var(--button1), var(--button2));
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-small:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, var(--button2), var(--button1));
}

.discord:hover {
  background:#5865F2;
}

.google:hover {
  background:#DB4437;
}

.github:hover {
  background:#333;
}

/* ==== SOCIAL LOGIN BUTTONS ==== */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Discord button */
.social-btn.discord {
  background: linear-gradient(90deg, #5865f2, #4752c4);
  border: none;
}
.social-btn.discord:hover {
  filter: brightness(1.15);
}

/* Google button */
.social-btn.google {
  background: linear-gradient(90deg, #ea4335, #fbbc05, #34a853, #4285f4);
  background-size: 300% 100%;
  animation: googleGradient 6s ease infinite;
}
@keyframes googleGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* GitHub button */
.social-btn.github {
  background: linear-gradient(90deg, #333, #24292e);
}
.social-btn.github:hover {
  background: linear-gradient(90deg, #444, #1a1a1a);
}

