/* =========================================
   ULTRA-PREMIUM GLOBAL VARIABLES & BASE
   ========================================= */
:root {
  --primary-color: #0f172a; 
  --primary-hover: #2563eb; 
  --main-bg: #f8fafc; 
  --card-bg: rgba(255, 255, 255, 0.7); /* Glassmorphic Base */
  --text-main: #0f172a; 
  --text-muted: #64748b;
  --border-light: rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--main-bg);
  background-image: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* =========================================
   HEADER & NAVIGATION (Glassmorphism)
   ========================================= */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-radius: 50px; 
  
  padding: 0.8rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px; 
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =========================================
   GLOBAL BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15,23,42,0.15);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(37,99,235,0.2);
}

/* =========================================
   PRODUCT GRID & CARDS
   ========================================= */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px; 
  overflow: hidden;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(15,23,42,0.15); 
}

.product-img {
  width: 100%;
  height: 260px;
  background-color: #f1f5f9;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.product-info {
  padding: 28px 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 15px 0 20px;
}

/* =========================================
   SHOP LAYOUT & SIDEBAR
   ========================================= */
.shop-container {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 140px auto 60px; 
  padding: 0 20px;
  align-items: flex-start;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  padding: 30px 25px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  position: sticky; 
  top: 100px; 
}

.sidebar h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 15px;
  font-weight: 800;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list > li {
  margin-bottom: 18px; 
}

.category-list a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600; 
  transition: color 0.2s ease;
  display: block;
}

.category-list a:hover {
  color: var(--primary-hover);
}

.submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 12px;
  border-left: 2px solid rgba(0,0,0,0.05); 
}

.submenu li {
  margin-bottom: 12px;
}

.submenu a {
  color: var(--text-muted); 
  font-weight: 500;
  font-size: 0.95rem;
}

.submenu a:hover {
  color: var(--primary-hover);
}

.product-area {
  flex-grow: 1;
}

/* =========================================
   PRO PRODUCT PAGE
   ========================================= */
.product-page-pro {
  margin-top: 140px;
  margin-bottom: 80px;
}

.pro-product-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.pro-gallery {
  flex: 1.5;
  min-width: 0; 
}

.slider-container {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}

.slider-images {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

.slide-img.active {
  opacity: 1;
  z-index: 2;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.pro-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.pro-title {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pro-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pro-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
}

.stock-badge {
  background: #e6f4ea;
  color: #1e8e3e;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pro-formats-included {
  margin-bottom: 30px;
}

.format-chips {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pro-add-to-cart {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.pro-details-section {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.tabs-header {
  display: flex;
  background: rgba(255,255,255,0.3);
  border-bottom: 1px solid var(--border-light);
}

.tab-btn {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-hover);
  background: rgba(255,255,255,0.5);
}

.tab-content {
  display: none;
  padding: 40px;
}

.tab-content.active {
  display: block;
}

.file-list {
  list-style-type: none;
  padding: 0;
}

.file-list li {
  padding: 12px 15px;
  background: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

/* Product Gallery Fix */
#dyn-main-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain; 
  display: block;
}

#dyn-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pro-thumb {
  width: 80px; 
  height: 80px; 
  object-fit: contain; 
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f1f5f9;
}

.pro-thumb.active, .pro-thumb:hover {
  border-color: var(--primary-hover); 
  transform: scale(1.05); 
}

/* =========================================
   CART LAYOUT
   ========================================= */
.cart-page {
  margin-top: 140px; 
}

.cart-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cart-items-section {
  flex: 2;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 0 30px;
  box-shadow: var(--card-shadow);
}

.cart-item {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 140px;
  height: 140px;
  background-color: #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.cart-item-header h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 800;
}

.cart-item-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.digital-badge {
  background: #e6f4ea;
  color: #1e8e3e;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-summary-section {
  flex: 1;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 30px;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 100px;
}

.cart-summary-section h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 15px;
  font-weight: 800;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 600;
}

.total-row {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.secure-checkout {
  text-align: center;
  margin-top: 20px;
}

.secure-checkout p {
  color: #1e8e3e;
  font-weight: 700;
  font-size: 0.9rem;
}

/* =========================================
   CUSTOM INQUIRY FORM STYLES
   ========================================= */
.form-page {
  margin-top: 160px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.form-wrapper {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  max-width: 800px;
  width: 100%;
}

.form-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-hover);
  background: #fff;
}

.input-with-unit {
  display: flex;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  overflow: hidden;
  width: 100%; 
}

.input-with-unit input {
  border: none !important;
  border-radius: 0 !important;
  flex-grow: 1;
  width: 100%; 
  min-width: 0; 
}

.input-with-unit .unit-select {
  border: none;
  border-left: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.03);
  padding: 0 10px;
  font-weight: 700;
  color: var(--text-muted);
  outline: none;
  cursor: pointer;
  flex-shrink: 0; 
}

.file-upload-box {
  position: relative;
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-box:hover {
  border-color: var(--primary-hover);
  background: #fff;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-text {
  pointer-events: none;
  font-weight: 700;
  color: var(--text-main);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */
.about-page {
  margin-top: 160px;
}

.about-hero {
  text-align: center;
  margin-bottom: 80px; 
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.founder-section {
  display: flex;
  flex-direction: column; 
  gap: 30px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  padding: 60px 50px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  align-items: center; 
  text-align: center; 
  margin-bottom: 80px;
  box-shadow: var(--card-shadow);
}

.founder-image-wrapper {
  width: 200px; 
  height: 200px; 
}

.founder-img {
  width: 100%;
  height: 100%; 
  border-radius: 50%; 
  object-fit: cover; 
  border: 5px solid #fff; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: block;
}

.founder-bio {
  max-width: 700px; 
}

.founder-bio h2 {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 700;
}

.founder-bio h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.founder-bio p {
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 80px 5% 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-section.brand p {
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.8;
  font-weight: 500;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
}

.footer-section ul li a,
.footer-section.contact p,
.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-section ul li a:hover,
.social-links a:hover {
  color: var(--primary-hover);
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================
   FLOATING WHATSAPP & CUSTOM BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366; 
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.custom-work-float {
  position: fixed;
  bottom: 105px; 
  right: 30px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0 22px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-work-float:hover {
  transform: translateY(-5px);
  background-color: var(--primary-hover);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */
@media (max-width: 900px) {
  header {
    flex-direction: row; 
    justify-content: space-between;
    padding: 15px 25px;
    border-radius: 20px;
    width: 95%;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px 0;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px); 
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .shop-container, .pro-product-layout, .cart-layout {
    flex-direction: column;
  }
  
  .sidebar, .pro-sidebar, .cart-summary-section {
    width: 100%;
    position: static;
  }

  .tabs-header {
    flex-direction: column;
  }
  
  .tab-btn {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-left: 3px solid transparent;
  }
  
  .tab-btn.active {
    border-left-color: var(--primary-hover);
    border-bottom-color: transparent;
  }
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cart-item-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cart-item-actions {
    flex-direction: column;
    gap: 15px;
  }

  .form-row, .form-row.three-cols {
    grid-template-columns: 1fr; 
    gap: 0;
  }

  .whatsapp-float {
    width: 55px; height: 55px; bottom: 20px; right: 20px;
  }
  .custom-work-float {
    bottom: 90px; right: 20px; height: 55px; padding: 0 16px; font-size: 0.9rem;
  }
}
/* =========================================
   PREMIUM CART POP-UP (TOAST MODAL)
   ========================================= */
.cart-toast-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-toast-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-toast-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  text-align: center;
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  width: 90%;
  border: 1px solid rgba(255,255,255,1);
}

.cart-toast-overlay.active .cart-toast-box {
  transform: translateY(0) scale(1);
}

.toast-icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
  display: inline-block;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.toast-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.toast-msg {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.toast-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid rgba(0,0,0,0.1);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background: rgba(0,0,0,0.03);
}