@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --mint: #c6f0df;
  --mint-light: #e8f8f0;
  --mint-dark: #9ad8bf;
  --coral: #e85c4a;
  --coral-soft: #f09888;
  --coral-dark: #c94838;
  --charcoal: #2d2d2d;
  --text-muted: #6b6b6b;
  --cream: #faf9f6;
  --white: #ffffff;
  --card-border: rgba(45, 45, 45, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(198, 240, 223, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-shapes::before, .bg-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.bg-shapes::before {
  width: 600px;
  height: 600px;
  background: var(--mint);
  top: -200px;
  left: -200px;
  animation: float 20s infinite alternate;
}

.bg-shapes::after {
  width: 500px;
  height: 500px;
  background: var(--coral-soft);
  opacity: 0.15;
  bottom: -100px;
  right: -100px;
  animation: float 15s infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem 0;
}

header.scrolled {
  padding: 0.8rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.brand-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--coral);
  letter-spacing: 0.5px;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

nav a:not(.nav-shop-link)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

nav a:not(.nav-shop-link):hover::after {
  width: 100%;
}

.nav-shop-link {
  background: var(--coral);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(232, 92, 74, 0.3);
}

.nav-shop-link:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 92, 74, 0.4);
}

/* Cart Icon */
.cart-link {
  position: relative;
  display: none; /* Only visible on shop.html */
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 92, 74, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(232, 92, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 92, 74, 0); }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-nav.open {
  max-height: 500px;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-nav a {
  padding: 1rem 2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--coral);
  font-weight: 700;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--cream) 100%);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
  color: var(--coral);
  font-style: italic;
  display: block;
}

.hero-cta {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(232, 92, 74, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(232, 92, 74, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Partnership Section */
#partnership {
  padding: 8rem 0;
  background: linear-gradient(to bottom, var(--cream), var(--mint-light));
  position: relative;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partnership-badge {
  display: inline-block;
  background: var(--mint-dark);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.partnership-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.partnership-title span {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.partnership-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.8;
}

.partnership-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px var(--card-border);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

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

.stat-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured / Generic Gallery */
#featured, #creators {
  padding: 8rem 0;
}

.gallery-header {
  margin-bottom: 4rem;
  text-align: center;
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  width: 100%;
}

.gallery-header-left {
  text-align: left;
}

.slider-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.slider-arrow {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.slider-arrow:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 24px rgba(232, 92, 74, 0.3);
}

.gallery-slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 3rem;
}

.gallery-slider {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none;
}

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

.gallery-slider .art-card {
  flex: 0 0 calc((100% - 5rem) / 3);
  scroll-snap-align: start;
  min-width: 300px;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid, .creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.art-card, .product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
}

.art-card:hover, .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.art-img-wrapper, .product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: var(--mint-light);
}

.art-img-wrapper img, .product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.art-card:hover .art-img-wrapper img, .product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.art-meta, .product-info {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.product-info {
  flex-direction: column;
  align-items: flex-start;
}

.art-title {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.art-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.art-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--coral);
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.art-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--charcoal);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 2;
  transition: all 0.3s ease;
}

.art-card:hover .art-tag-badge {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.art-meta-details {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.art-meta-price-pill {
  background: var(--mint-light);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--mint-dark);
  box-shadow: 0 2px 8px rgba(154, 216, 191, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-card:hover .art-meta-price-pill {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 4px 12px rgba(232, 92, 74, 0.2);
}

.art-card:hover .art-price {
  color: var(--white);
}

/* Slider Dots */
.slider-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45, 45, 45, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--coral);
  box-shadow: 0 2px 8px rgba(232, 92, 74, 0.4);
}

.view-all-cta {
  text-align: center;
  margin-top: 4rem;
}

.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

/* Creators Section */
#creators {
  background: var(--white);
}

.creator-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-5px);
  background: var(--mint-light);
}

.creator-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 2px solid var(--mint-dark);
}

.creator-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.creator-region {
  display: block;
  font-size: 0.9rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 1rem;
}

.creator-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
}
/* About Section */
#about {
  padding: 8rem 0;
  background: var(--cream);
}

.about-wrap {
  text-align: center;
  background: linear-gradient(145deg, #181A1B 0%, #2A2F33 100%);
  padding: 5rem 4rem;
  border-radius: 40px;
  color: var(--white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(154, 216, 191, 0.1);
  color: var(--mint);
  border: 1px solid rgba(154, 216, 191, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.about-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}

.about-headline {
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
  position: relative;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3.5rem;
}

.about-column h4 {
  font-size: 1.5rem;
  color: var(--coral-soft);
  margin-bottom: 1rem;
}

.about-column p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Student Roles Grid */
.student-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.role-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--mint-dark);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.role-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-card:hover .role-icon-wrapper {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: var(--charcoal);
  transform: scale(1.1) rotate(6deg);
}

.role-card h4 {
  font-size: 1.25rem;
  color: var(--mint);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.role-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Contact Section */
#contact {
  padding: 8rem 0;
  background: linear-gradient(to top, var(--mint-light), var(--cream));
}

.contact-wrap {
  max-width: 600px;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--card-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cream);
}

.form-control:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 92, 74, 0.1);
}

.btn-submit {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 92, 74, 0.2);
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 0;
  border-top: 5px solid var(--coral);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-partner {
  font-weight: 500;
  color: var(--mint-dark) !important;
}

/* -------------------------------------
   SHOP PAGE SPECIFIC STYLES 
   ------------------------------------- */

.shop-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--mint-light), var(--mint));
  text-align: center;
}

.shop-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.shop-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.shop-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  gap: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 1rem;
}

.filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sort-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sort-select-wrapper {
  position: relative;
}

.sort-select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 0.6rem 2.5rem 0.6rem 1.2rem;
  border-radius: 30px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sort-select-wrapper::after {
  content: "▼";
  font-size: 0.7rem;
  color: var(--text-muted);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.sort-select:hover, .sort-select:focus {
  border-color: var(--coral);
  outline: none;
  box-shadow: 0 4px 12px rgba(232, 92, 74, 0.1);
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.filter-btn.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0 6rem;
}

.product-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.product-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 0;
}

.product-partner-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  background-color: var(--mint-light);
  border: 1px solid var(--mint-dark);
  color: var(--charcoal);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.product-partner-badge.independent {
  background: rgba(45, 45, 45, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-info .art-price, .product-price {
  margin-bottom: 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--coral);
  font-size: 1.2rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.product-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: block;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 1rem;
}

.product-bottom .product-price {
  margin-bottom: 0;
}

.product-bottom .btn-add-cart {
  width: auto;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-add-cart {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-add-cart:hover {
  background: var(--coral-dark);
}

/* Cart Sidebar Overlay & Panel */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2, .cart-header h3 {
  font-size: 1.5rem;
}

.close-cart, .close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
}

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

.cart-item-info, .cart-item-details {
  flex-grow: 1;
}

.cart-item-title, .cart-item-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

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

.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0 0.5rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--coral);
}

.cart-item-price {
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--card-border);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--card-border);
  background: var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-checkout {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: var(--coral);
}

.cart-empty, .empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 2rem;
  padding: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-modal.active, .checkout-modal.open {
  opacity: 1;
  visibility: visible;
}

.checkout-content {
  background: var(--white);
  width: 90%;
  max-width: 800px;
  border-radius: 24px;
  padding: 3rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.checkout-modal.active .checkout-content, .checkout-modal.open .checkout-content {
  transform: translateY(0);
}

.close-checkout {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.checkout-form h3, .order-summary h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.order-summary {
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 1.5rem;
  color: var(--coral);
}

.btn-place-order {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.btn-place-order:hover {
  background: var(--coral-dark);
}

.order-success {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--charcoal);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.order-success h2, .order-success h3 {
  color: var(--charcoal);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.order-success p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.order-id {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--coral);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.summary-item, .order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cart-badge.pulse {
  animation: badgePulse 0.3s ease;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Partners Section */
#partners {
  background: var(--white);
  padding: 8rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  background: var(--cream);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: 0 10px 30px var(--card-border);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: var(--mint-light);
}

.partner-teaser-card {
  border: 2px dashed rgba(45, 45, 45, 0.15) !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partner-teaser-card:hover {
  border-color: var(--coral) !important;
  background: var(--mint-light) !important;
  transform: translateY(-5px);
}

.partner-teaser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.teaser-icon {
  font-size: 3rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.teaser-badge {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-header-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.partner-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid var(--mint-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.partner-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}

.partner-name {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  color: var(--charcoal);
}

.partner-badge-ngo {
  background: var(--coral);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-region {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.partner-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.partner-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2rem;
}

.highlight-item {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  font-size: 0.95rem;
  border: 1px solid var(--card-border);
  color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.highlight-item strong {
  color: var(--coral-dark);
}

/* Tablet Slider Override */
@media (max-width: 1024px) {
  .gallery-slider .art-card {
    flex: 0 0 calc((100% - 2.5rem) / 2);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .partnership-grid, .about-grid, .checkout-grid, .partners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .partner-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .student-roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  /* Reduce General Padding */
  #mission, #featured, #creators, #partners, #about, #contact, .shop-hero {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  /* Header & Logo adjustments */
  header {
    padding: 1rem 0;
  }
  
  .header-inner {
    padding: 0 1.5rem;
  }
  
  .mobile-nav a {
    padding: 1rem 1.5rem;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .brand-logo img {
    height: 36px;
  }

  /* Hero Section */
  #hero {
    height: auto;
    min-height: 75vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
  }
  
  .hero-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  /* Grid/Layout Alignment fixes */
  .gallery-grid, .creators-grid, .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .gallery-header-left {
    text-align: center;
  }
  
  .slider-controls {
    justify-content: center;
    width: 100%;
  }
  
  .gallery-slider {
    gap: 1.5rem;
  }
  
  .gallery-slider .art-card {
    flex: 0 0 280px;
  }
  
  .partnership-content {
    text-align: center;
  }
  
  .partnership-title {
    font-size: 2rem;
  }
  
  .partnership-text p {
    font-size: 1rem;
  }

  /* About Section Title Fix */
  .about-wrap {
    padding: 3.5rem 1.5rem;
    border-radius: 28px;
  }
  
  .about-headline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    line-height: 1.3;
  }
  
  .about-grid {
    text-align: center;
  }
  
  .about-column h4 {
    font-size: 1.3rem;
  }
  
  .about-column p {
    font-size: 1rem;
  }

  /* Partner Card on Mobile */
  .partner-card {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .partner-header-block {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .partner-meta-info {
    align-items: center;
  }

  .partner-name {
    font-size: 1.5rem;
    text-align: center;
  }

  .partner-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .partner-highlights {
    padding-top: 1.5rem;
  }

  /* Contact & Checkout Form Alignment */
  .contact-form {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .checkout-content {
    padding: 1.5rem;
    width: 92%;
    border-radius: 20px;
  }

  .checkout-grid {
    gap: 1.5rem;
  }

  .checkout-form h3, .order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra phone alignment and text adjustments */
  .hero-title {
    font-size: 2rem;
  }
  
  .partnership-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .btn-submit, .btn-place-order, .btn-checkout {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .shop-hero {
    padding: 7rem 0 3rem;
  }
  
  .shop-hero h1 {
    font-size: 2.2rem;
  }
  
  .shop-hero p {
    font-size: 1rem;
  }
  
  .student-roles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

/* ==========================================================================
   Shop Enhancements: Quick View, Promo Code, Spinner & Checkmark Success
   ========================================================================== */

/* Quick View Modal Styles */
.quickview-content {
  max-width: 800px;
  width: 90%;
  padding: 2.5rem;
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.quickview-img-side {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--card-border);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.quickview-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.quickview-img-side:hover img {
  transform: scale(1.04);
}

.quickview-info-side {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.qv-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.qv-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mint-dark);
}

.qv-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  line-height: 1.25;
}

.qv-artist {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.qv-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.qv-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  padding-top: 1.5rem;
}

.qv-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coral);
}

.qv-add-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

/* Promo Code Styling */
.promo-code-container {
  background: var(--cream);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  margin: 1.5rem 0;
}

.promo-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0 !important;
}

.promo-input {
  flex-grow: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-promo-apply {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-promo-apply:hover {
  background: var(--coral);
  box-shadow: 0 4px 12px rgba(232, 92, 74, 0.15);
  color: var(--white);
}

.promo-message {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  font-weight: 600;
  display: none;
}

.promo-message.success {
  color: var(--mint-dark);
  display: block;
}

.promo-message.error {
  color: var(--coral);
  display: block;
}

.discount-summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--mint-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Button Loading Spinner */
.btn-place-order {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  min-height: 48px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success Checkmark Animation Styles */
.success-checkmark-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark-svg {
  width: 60px;
  height: 60px;
  display: block;
}

.checkmark-circle {
  stroke: var(--mint-dark);
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke: var(--mint-dark);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes stroke-check {
  to { stroke-dashoffset: 0; }
}

/* Media query overrides for Quick View */
@media (max-width: 768px) {
  .quickview-content {
    padding: 1.75rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .quickview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quickview-img-side {
    max-height: 250px;
  }
  
  .qv-name {
    font-size: 1.5rem;
  }
  
  .qv-desc {
    margin-bottom: 1.25rem;
  }
}

/* Payment Panel Styles */
.payment-header-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.payment-header-block h4 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.payment-header-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.qr-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  padding: 1.5rem;
  gap: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.qr-image-wrapper {
  background: var(--white);
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-image-wrapper img {
  width: 140px;
  height: 140px;
  display: block;
}

.qr-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.qr-amount-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.qr-amount-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
}

.qr-upi-id {
  font-size: 0.85rem;
  color: var(--charcoal);
}

.payment-confirmation-check {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

.checkbox-container input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--mint-dark);
}

.payment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .qr-panel {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem;
  }
  .qr-details {
    align-items: center;
  }
}
