:root {
    --primary: #007bff;
    --secondary: #00d4ff;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #64748b;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--light); color: var(--dark); transition: var(--transition); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Top Bar */
.top-bar { background: var(--dark); color: var(--light); padding: 8px 10%; font-size: 0.85rem; opacity: 0.9; }

/* Navbar */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(12px);
    background: var(--glass);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar.navbar-transparent {
    background: transparent;
    border-bottom: none;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 10%; }
.logo { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-links .cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
}
.nav-links .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3b30;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
#authButton a { display: inline-block; }
.btn-cta { background: var(--primary); color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; }
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navbar */
@media (max-width: 1024px) {
    .nav-container { padding: 0 5%; }
    .top-bar { padding: 8px 5%; }
    .hero { padding: 0 5%; }
    .stats-container { padding: 0 5%; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 5%; }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .navbar.navbar-transparent .nav-links {
        background: var(--dark);
    }
    
    .navbar.navbar-transparent .nav-links a {
        color: var(--light);
    }
    
    .navbar.navbar-transparent .menu-toggle span {
        background: var(--light);
    }
    
    .top-bar {
        display: none;
    }
}

/* Hero */
.hero {
    height: 85vh; display: flex; align-items: center; padding: 0 10%;
    background: radial-gradient(circle at top right, rgba(0, 123, 255, 0.1), transparent);
}
.badge { background: rgba(0, 123, 255, 0.1); color: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; display: inline-block; }
h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.text-gradient { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--gray); max-width: 600px; margin-bottom: 2rem; }

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero { height: 80vh; }
    h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 120px 5% 60px;
        text-align: center;
    }
    
    h1 { font-size: 2.2rem; }
    
    .hero p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .badge { font-size: 0.7rem; padding: 4px 12px; }
}

/* Stats Overlay */
.stats-container { margin-top: -60px; position: relative; z-index: 10; padding: 0 10%; }
.stats-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    background: var(--dark); color: var(--light); padding: 3rem; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.stat-card { display: flex; align-items: center; gap: 15px; }
.stat-card i { font-size: 2.5rem; color: var(--secondary); }

/* Stats Responsive */
@media (max-width: 1024px) {
    .stats-container { margin-top: -40px; }
    .stats-grid { padding: 2rem; }
    .stat-card i { font-size: 2rem; }
}

@media (max-width: 768px) {
    .stats-container { margin-top: 0; padding: 2rem 5%; }
    .stats-grid { 
        grid-template-columns: 1fr; 
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-card i { font-size: 2rem; }
}

@media (max-width: 480px) {
    .stats-grid { gap: 15px; padding: 1.25rem; }
    .stat-card i { font-size: 1.75rem; }
}

/* Service Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card {
    padding: 3rem; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition); background: var(--light);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--primary); }
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; display: block; }

/* Grid Responsive */
@media (max-width: 1024px) {
    .grid { gap: 1.5rem; margin-top: 2rem; }
    .service-card { padding: 2rem; }
}

@media (max-width: 768px) {
    .grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    .service-card { padding: 1.5rem; }
    .service-card i { font-size: 2.5rem; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
    .service-card { padding: 1.25rem; }
    .service-card i { font-size: 2rem; }
}

/* Contact Form */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5rem 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; gap: 1rem; }
input, textarea { padding: 1rem; border-radius: 8px; border: 1px solid var(--gray); background: transparent; color: var(--dark); }

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-wrapper { gap: 3rem; padding: 3rem 0; }
}

@media (max-width: 768px) {
    .contact-wrapper { 
        grid-template-columns: 1fr; 
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .form-group { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    input, textarea { padding: 0.875rem; }
}

@media (max-width: 480px) {
    .contact-wrapper { padding: 1.5rem 0; }
    input, textarea { padding: 0.75rem; font-size: 0.9rem; }
}

/* Footer */
footer { text-align: center; padding: 3rem 0; border-top: 1px solid var(--border); }
footer p { margin: 0; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==================== CART PAGE STYLES ==================== */

.cart-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.cart-header {
  margin-bottom: 40px;
}

.cart-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.cart-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* Cart Items Container */
.cart-items {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Cart Header Row */
.cart-item-header {
  display: grid;
  grid-template-columns: 110px 1fr 150px 140px 120px 140px 100px;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Cart Item */
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr 150px 140px 120px 140px 100px;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.cart-item:hover {
  background: rgba(0, 123, 255, 0.02);
}

.cart-item:last-child {
  border-bottom: none;
}

/* Cart Item Image */
.cart-item-image {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.cart-item-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Cart Item Details */
.cart-item-details h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.4;
}

.cart-item-details .specs {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Cart Item Price */
.cart-item-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-price .original-price {
  text-decoration: line-through;
  color: #adb5bd;
  font-size: 0.85rem;
  font-weight: 500;
}

.cart-item-price .discounted-price {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.cart-item-price .discount-badge {
  background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

/* Cart Item Quantity */
.cart-item-quantity {
  display: flex;
  flex-direction: column;
}

.cart-item-quantity .quantity-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cart-item-quantity .quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-item-quantity button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-item-quantity button:hover {
  background: var(--primary);
  color: white;
}

.cart-item-quantity button:active {
  transform: scale(0.95);
}

.cart-item-quantity input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  -moz-appearance: textfield;
}

.cart-item-quantity input::-webkit-outer-spin-button,
.cart-item-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart Item Total */
.cart-item-total {
  display: flex;
  flex-direction: column;
}

.cart-item-total .total-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.cart-item-total .total-value {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--primary);
}

/* Cart Item Actions */
.cart-item-actions {
  display: flex;
  justify-content: center;
}

.cart-item-actions .btn-remove {
  background: linear-gradient(135deg, #ff3b30 0%, #ff453a 100%);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(255, 59, 48, 0.2);
}

.cart-item-actions .btn-remove:hover {
  background: linear-gradient(135deg, #d63027 0%, #e74c3c 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.35);
}

/* Cart Summary */
.cart-summary {
  background: var(--light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  color: var(--dark);
}

.totals-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  padding: 8px 0;
}

.totals-row.subtotal {
  color: var(--dark);
  font-weight: 500;
}

.totals-row.discount {
  color: #34c759;
  font-weight: 600;
}

.totals-row.discount span:first-child {
  color: #34c759;
}

.totals-row.gst {
  color: var(--gray);
  font-size: 0.9rem;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.totals-row.grand-total {
  font-size: 2rem;
  font-weight: 800;
  padding-top: 20px;
  margin-top: 12px;
  color: var(--dark);
}

.totals-row.grand-total .total-amount {
  color: var(--primary);
  font-size: 2.5rem;
}

/* Cart Actions */
.totals-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.totals-actions .btn-primary,
.totals-actions .btn-secondary {
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.totals-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.35);
}

.totals-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.45);
}

.totals-actions .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.totals-actions .btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 40px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.empty-cart-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-cart-icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--gray);
}

.empty-cart h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.empty-cart p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.empty-cart .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
  transition: var(--transition);
}

.empty-cart .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  z-index: 10000;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(52, 199, 89, 0.4);
  animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.toast-error {
  background: linear-gradient(135deg, #ff3b30 0%, #ff453a 100%);
  box-shadow: 0 8px 30px rgba(255, 59, 48, 0.4);
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ==================== RESPONSIVE CART STYLES ==================== */

@media (max-width: 1200px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    order: -1;
  }

  .cart-item-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .cart-item-image {
    width: 100px;
    height: 100px;
  }

  .cart-item-price,
  .cart-item-quantity,
  .cart-item-gst,
  .cart-item-total,
  .cart-item-actions {
    grid-column: 2;
  }

  .cart-item-price {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cart-item-quantity {
    margin-top: 12px;
  }

  .cart-item-total {
    margin-top: 12px;
  }

  .cart-item-total .total-value {
    color: var(--primary);
  }

  .cart-item-actions {
    margin-top: 16px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .cart-page {
    padding: 120px 16px 60px;
  }

  .cart-header h1 {
    font-size: 2rem;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    padding: 16px;
    gap: 12px;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-details h3 {
    font-size: 0.9rem;
  }

  .cart-item-details .specs {
    font-size: 0.8rem;
  }

  .cart-summary {
    padding: 24px;
  }

  .totals-actions .btn-primary,
  .totals-actions .btn-secondary {
    padding: 16px 24px;
  }

  .empty-cart {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .cart-header h1 {
    font-size: 1.75rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .cart-item-price {
    justify-content: center;
  }

  .cart-item-quantity {
    align-items: center;
  }

  .cart-item-actions {
    justify-content: center;
  }
}

/* ==================== ADDITIONAL RESPONSIVE STYLES ==================== */

/* Section Padding Responsive */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 5%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
}

/* Card Grid Responsive */
.card-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .card-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* ==================== PRODUCT CARD STYLES ==================== */
/* Main Card Component */
.card {
  position: relative;
  width: 360px;
  height: 550px;
  background-color: #000;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .card {
    width: 320px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 90%;
    max-width: 360px;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
    height: 400px;
    border-radius: 25px;
  }
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease, transform 0.6s ease;
}

.top-label {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  z-index: 10;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

@media (max-width: 768px) {
  .card-content {
    padding: 30px;
  }
}

.card-content h2 {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .card-content h2 {
    font-size: 1.4rem;
  }
}

.cyan-line {
  width: 70px;
  height: 4px;
  background-color: #00d4ff;
  margin: 15px 0 25px 0;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .card-content p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
}

.more-btn {
  padding: 12px 40px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background-color: #fff;
  color: #000;
}

.card:hover .card-img {
  filter: blur(10px);
  transform: scale(1.1);
}

.card:hover .card-content {
  opacity: 1;
}

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }
}

.highlight {
  background-color: #b2ebf2;
  padding: 5px 20px;
  border-radius: 12px;
  display: inline-block;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .highlight {
    padding: 3px 12px;
    border-radius: 8px;
    margin-left: 5px;
  }
}

/* Product Slider */
.product-slider-section {
  padding: 60px 0;
  background: var(--bg);
}

.product-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.h-card {
  min-width: 300px;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .h-card {
    min-width: 260px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .h-card {
    min-width: 220px;
    height: 280px;
  }
}

.h-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .1));
}

.h-card .content {
  position: relative;
  padding: 20px;
  z-index: 1;
}

.h-card .category {
  font-size: 14px;
  opacity: 0.9;
}

.h-card h3 {
  font-size: 16px;
  margin-top: 6px;
  line-height: 1.4;
}

.h-card .plus-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

/* Controls */
.controls {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 480px) {
  .controls {
    gap: 10px;
  }
}

.nav-btn {
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .nav-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.process-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .process-card {
    padding: 20px;
  }
}

.step-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.1;
  color: var(--primary);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 40px auto;
}

@media (max-width: 768px) {
  .faq-container {
    margin: 30px auto;
    padding: 0 5%;
  }
}

details {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
}

@media (max-width: 768px) {
  details {
    padding: 15px;
  }
}

summary {
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  color: var(--text);
}

/* Partner Track */
.partner-track {
  display: flex;
  overflow: hidden;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  opacity: 0.6;
  align-items: center;
}

@media (max-width: 768px) {
  .partner-track {
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.partner-track img {
  height: 40px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--card-bg);
  width: 90%;
  max-width: 420px;
  padding: 25px;
  border-radius: 16px;
  position: relative;
  animation: pop 0.3s ease;
  color: var(--text);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 20px;
    margin: 20px;
  }
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 15px;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

@keyframes pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Grid 2 Columns */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .grid-2 {
    gap: 30px;
  }
}

.benefit-list {
  list-style: none;
  margin-top: 25px;
}

.benefit-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit-list i {
  color: var(--primary);
  font-size: 1.5rem;
}

/* Slider Wrapper */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  background: var(--bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .slider-wrapper {
    padding: 40px 0;
  }
}

.slider-track {
  display: flex;
  width: calc(300px * 10);
  animation: scrollSide 25s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-card {
  width: 300px;
  padding: 20px 40px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .slider-card {
    width: 250px;
    padding: 15px 20px;
  }
}

.slider-card .icon-box {
  background-color: #e6f7ef;
  color: #10b981;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .slider-card .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

.slider-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.slider-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

@keyframes scrollSide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 5)); }
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

/* ==================== PRODUCT LIST & CARDS (Shared) ==================== */

/* Product List Container */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 30px auto 60px;
  padding: 0 20px;
  justify-items: center;
}

/* Responsive Product List */
@media (max-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 20px auto 40px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px auto 30px;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}

/* Product Card - Modern Style */
.product-list .card {
  width: 100%;
  max-width: 280px;
  height: auto;
  min-height: 380px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

/* Product Card Hover */
.product-list .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Product Card Image */
.product-list .card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-list .card:hover img {
  transform: scale(1.02);
}

/* Product Card Content */
.product-list .card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}

.product-list .card p {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}

/* Product Card Price */
.product-list .card .price {
  color: #e53935;
  font-weight: bold;
  font-size: 15px;
  margin: 8px 0;
}

/* Product Card Description */
.product-list .card .desc {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Product Card Button */
.product-list .card button {
  margin-top: auto;
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.product-list .card button:hover {
  background: #084298;
  transform: translateY(-2px);
}

.product-list .card button:active {
  transform: translateY(0);
}

/* ==================== RESPONSIVE PRODUCT CARD STYLES ==================== */

/* Tablet */
@media (max-width: 1024px) {
  .product-list .card {
    max-width: 240px;
    min-height: 340px;
    padding: 14px;
  }
  
  .product-list .card img {
    height: 150px;
    padding: 8px;
  }
  
  .product-list .card h3 {
    font-size: 14px;
    margin: 12px 0 4px;
  }
  
  .product-list .card p,
  .product-list .card .price {
    font-size: 13px;
  }
  
  .product-list .card .desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .product-list .card button {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-list .card {
    max-width: 200px;
    min-height: 300px;
    padding: 12px;
    border-radius: 12px;
  }
  
  .product-list .card img {
    height: 120px;
    padding: 8px;
    border-radius: 8px;
  }
  
  .product-list .card h3 {
    font-size: 13px;
    margin: 10px 0 4px;
  }
  
  .product-list .card p {
    font-size: 12px;
  }
  
  .product-list .card .price {
    font-size: 13px;
    margin: 6px 0;
  }
  
  .product-list .card .desc {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .product-list .card button {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-list .card {
    max-width: 100%;
    width: 100%;
    min-height: 280px;
    padding: 10px;
    border-radius: 10px;
  }
  
  .product-list .card img {
    height: 100px;
    padding: 6px;
  }
  
  .product-list .card h3 {
    font-size: 12px;
    margin: 8px 0 4px;
  }
  
  .product-list .card p {
    font-size: 11px;
  }
  
  .product-list .card .price {
    font-size: 12px;
    margin: 6px 0;
  }
  
  .product-list .card .desc {
    font-size: 10px;
    margin-bottom: 8px;
  }
  
  .product-list .card button {
    padding: 7px 12px;
    font-size: 11px;
    border-radius: 5px;
  }
}

