:root {
  --primary: #6c5ce7;
  --primary-light: #a29bfe;
  --accent: #00cec9;
  --dark: #0a0a1a;
  --dark-2: #12121f;
  --dark-3: #1a1a2e;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
  --gradient-2: linear-gradient(135deg, #00cec9, #0984e3);
  --gradient-3: linear-gradient(135deg, #fd79a8, #6c5ce7);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--dark-2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));
  border-radius: 6px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideDown 0.8s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

.logo-text .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  position: relative;
}

.cart-btn:hover {
  background: rgba(108, 92, 231, 0.3);
  transform: translateY(-2px);
}

.cart-icon {
  width: 20px;
  height: 20px;
}

.cart-count {
  background: var(--gradient-1);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

.hero-content {
  flex: 1;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(108, 92, 231, 0.5);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.cta-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.hero-image {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease;
}

.phone-float {
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.phone-float img {
  max-width: 400px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(108, 92, 231, 0.4));
  animation: float 3s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -50px;
  right: -50px;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: 50px;
  left: -80px;
  animation-delay: 2s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: #fd79a8;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Products */
.products {
  padding: 4rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(108, 92, 231, 0.25);
  border-color: rgba(108, 92, 231, 0.3);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.sale-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

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

.product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.stars {
  color: #f39c12;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-text {
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart-btn {
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

/* Cart Page */
.cart-page {
  padding: 8rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease;
}

.cart-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.cart-subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
  animation: fadeInUp 0.6s ease;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart h2 {
  margin-bottom: 0.5rem;
  color: white;
}

.empty-cart p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--dark-3);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  animation: slideIn 0.4s ease;
}

.cart-item:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--dark-2);
}

.cart-item-details h3 {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: white;
}

.cart-item-category {
  color: var(--primary-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-item-price {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-2);
  border-radius: 10px;
  padding: 0.3rem;
}

.qty-btn {
  background: rgba(108, 92, 231, 0.15);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--primary);
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: white;
}

.remove-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #e74c3c;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-btn:hover {
  background: rgba(231, 76, 60, 0.15);
  transform: scale(1.1);
}

.remove-btn svg {
  width: 18px;
  height: 18px;
}

.cart-item-total {
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
  color: white;
}

.cart-summary {
  background: var(--dark-3);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 100px;
  animation: fadeInRight 0.6s ease;
}

.cart-summary h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: white;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  border-bottom: none;
  padding-top: 1rem;
}

.summary-row .free {
  color: #27ae60;
  font-weight: 600;
}

.checkout-btn {
  display: block;
  width: 100%;
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

/* Checkout Page */
.checkout-page {
  padding: 8rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease;
}

.checkout-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.checkout-header p {
  color: var(--text-muted);
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.form-section {
  background: var(--dark-3);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.form-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.input-animated {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.input-animated:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.input-animated::placeholder {
  color: var(--text-muted);
}

.place-order-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.3);
}

.place-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(108, 92, 231, 0.4);
}

.btn-amount {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.checkout-summary {
  background: var(--dark-3);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 100px;
  animation: fadeInRight 0.6s ease;
}

.checkout-summary h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: white;
}

.checkout-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-item:last-child {
  border-bottom: none;
}

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

.checkout-item-info h4 {
  font-size: 0.85rem;
  color: white;
}

.checkout-item-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-item-price {
  margin-left: auto;
  color: white;
  font-weight: 600;
}

.checkout-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

/* Footer */
.footer {
  background: var(--dark-2);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-1);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
  z-index: 9999;
  animation: slideInRight 0.3s ease;
}

.toast.hidden {
  display: none;
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s;
}

.success-modal.hidden {
  display: none;
}

.modal-content {
  background: var(--dark-3);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(108, 92, 231, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 450px;
  width: 90%;
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  animation: scaleIn 0.6s 0.2s both;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: white;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
  .cart-container,
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-summary,
  .cart-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 6rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .phone-float img {
    max-width: 280px;
  }

  .features {
    padding: 2rem 1rem;
  }

  .products {
    padding: 2rem 1rem 4rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 0.8rem;
  }

  .cart-item-actions {
    grid-column: 2;
    justify-self: start;
  }

  .cart-item-total {
    grid-column: 2;
    text-align: left;
  }
}
