:root {
  --bg-dark: #0a0e1a;
  --bg-card: #12182b;
  --accent: #00d9ff;
  --accent-2: #7000ff;
  --text: #ffffff;
  --text-muted: #a0a8c0;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(0, 217, 255, 0.3);
  font-family: "Space Grotesk", -apple-system, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-dark);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Version Toggle Button - Disabled for auto-detection only */
.version-toggle {
  display: none !important;
}

/* View Mode Tooltip - Disabled */
.view-mode-tooltip {
  display: none !important;
}

/* Force Desktop View Styles */
html.view-desktop {
  min-width: 1200px;
}

html.view-desktop body {
  min-width: 1200px;
}

/* Force Mobile View Styles */
html.view-mobile {
  max-width: 100vw;
  overflow-x: hidden;
}

html.view-mobile body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Article Styles */
.blog-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-content {
  line-height: 1.8;
}

.article-content .lead {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.article-content section {
  margin-bottom: 2.5rem;
}

.article-content h2 {
  color: var(--accent);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.article-content h3 {
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content ul li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.article-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.article-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.download-container {
  padding: 2rem 1rem;
}

.download-card {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--glow);
}

.primary-btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--glow);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 217, 255, 0);
  }
}

/* Shell / Container */
.shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Home */
.hero-home {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.hero-home h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.feature-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sections */
.section {
  margin: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.check-list {
  list-style: none;
  max-width: 800px;
  margin: 2rem auto;
}

.check-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 2rem auto;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Pricing Grid - 6 Plans */
.pricing-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 217, 255, 0.25);
  border-color: var(--accent);
}

.plan-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 12px;
}

.pricing-card-v2 h4 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.plan-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.plan-img {
  width: 100%;
  max-width: 200px;
  margin: 1.5rem auto;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card-v2 .primary-btn {
  margin-top: auto;
  width: 100%;
}

/* Guides Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.guide-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.guide-card-v2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-card-v2 {
  padding-bottom: 1.5rem;
}

.guide-tag {
  display: inline-block;
  margin: 1rem 1.5rem 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.guide-card-v2 h3 {
  font-size: 1.2rem;
  margin: 0 1.5rem 0.75rem;
  line-height: 1.4;
}

.guide-card-v2 p {
  color: var(--text-muted);
  margin: 0 1.5rem 1rem;
  font-size: 0.9rem;
}

.guide-meta {
  display: flex;
  gap: 1rem;
  margin: 0 1.5rem 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.guide-likes {
  margin: 0 1.5rem 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.guide-card-v2 a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin: 0 1.5rem;
  display: inline-block;
  transition: transform 0.3s;
}

.guide-card-v2 a:hover {
  transform: translateX(5px);
}

/* Why Choose */
.why-choose {
  background: var(--bg-card);
  border-radius: 30px;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  padding: 2rem;
  background: rgba(0, 217, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-radius: 30px;
  margin: 4rem 0;
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  font-size: 2.5rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 200px;
}

/* About Section */
.about-section {
  text-align: center;
  max-width: 900px;
  margin: 4rem auto;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content .primary-btn {
  margin-top: 2rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(112, 0, 255, 0.1));
  border-radius: 30px;
  border: 1px solid var(--accent);
  margin: 4rem 0;
}

.whatsapp-cta h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.whatsapp-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto 3rem;
  text-align: center;
}

.footer-logo-section {
  max-width: 400px;
  margin: 0 auto;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 16px;
}

.footer-logo-section p {
  color: var(--text-muted);
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 0.5rem 0;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.payment-img {
  width: 100%;
  max-width: 250px;
  margin-top: 1rem;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Product Page Styles */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-product-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent);
  transform: scale(1.05);
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.old-price {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.product-description h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.product-description p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.product-features-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.product-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-note {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.product-note strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.product-note p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.product-note a {
  color: var(--accent);
  text-decoration: none;
}

.order-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}

/* Order Form */
.order-section {
  background: var(--bg-card);
  border-radius: 30px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  border: 1px solid var(--border);
}

.order-form {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1rem; /* Add horizontal padding for better aesthetics */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.order-summary {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem auto; /* Center the summary */
  max-width: 800px; /* Limit width */
}

.order-summary h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
}

.payment-method {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  border-radius: 12px; /* Make button corners consistent */
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(112, 0, 255, 0.1));
  border-radius: 20px;
  border: 1px solid var(--accent);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.success-message p {
  color: var(--text-muted);
  margin: 0.75rem 0;
  line-height: 1.6;
}

.success-message strong {
  color: var(--accent);
}

.success-message .primary-btn {
  margin-top: 2rem;
}

/* Related Products */
.related-products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--accent);
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid var(--border);
}

.whatsapp-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.whatsapp-cta-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.whatsapp-cta-image img {
  width: 100%;
  border-radius: 20px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Box Centered */
.cta-box-centered {
  text-align: center;
  background: var(--bg-card);
  border-radius: 30px;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
}

.cta-box-centered h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.cta-box-centered p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Content */
.about-content {
  max-width: 900px;
  margin: 2rem auto;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-box {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  margin-top: 3rem;
}

.contact-info {
  margin-top: 2rem;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-label {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 1.5rem auto;
  line-height: 1.6;
}

/* Shop Filter Bar */
.filter-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: white;
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
  animation: pulse 2s infinite;
}

.old-price-badge {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0.5rem 0;
}

.pricing-card-v2 {
  position: relative;
}

.pricing-card-v2.current-product {
  border: 2px solid #00d9ff;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.pricing-card-v2.product-card-styles {
  opacity: 1;
  visibility: visible;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.pricing-card-v2 .plan-logo {
  width: 60px;
  margin-bottom: 1rem;
}

.pricing-card-v2 h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pricing-card-v2 .plan-price {
  color: #00d9ff;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.pricing-card-v2 .plan-price span {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-card-v2 .plan-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.pricing-card-v2 .old-price-badge {
  text-decoration: line-through;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.pricing-card-v2 .plan-img {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}

.pricing-card-v2 .plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  color: rgba(255,255,255,0.8);
}

.pricing-card-v2 .plan-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card-v2 .plan-features li span {
  position: absolute;
  left: 0;
  color: #00d9ff;
}

.pricing-card-v2 .primary-btn {
  margin-top: auto;
  width: 100%;
}

.product-badge {
  background: linear-gradient(135deg, #00d9ff, #7000ff);
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-weight: 700;
  z-index: 10;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-card);
  border-radius: 30px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  border: 1px solid var(--border);
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.review-info h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.review-stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.review-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.review-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.review-verified {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.review-stat {
  text-align: center;
}

.review-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.review-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  /* Shell padding */
  .shell {
    padding: 1rem;
    max-width: 100%;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
  
  /* Navigation */
  .nav {
    padding: 1rem;
  }
  
  /* Hide WhatsApp button on mobile */
  .nav .primary-btn {
    display: none !important;
  }
  
  /* Hide logo text on mobile, keep only image */
  .logo {
    font-size: 0 !important;
  }
  
  .logo img {
    width: 45px !important;
    height: 45px !important;
    margin: 0 !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(18, 24, 43, 0.98), rgba(10, 14, 26, 0.98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links a {
    display: block;
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
    text-align: left;
    transition: all 0.3s;
  }
  
  .nav-links a:hover {
    background: rgba(0, 217, 255, 0.1);
    padding-left: 1.5rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hero */
  .hero-home {
    padding: 2rem 1rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }
  
  /* Features */
  .features-trio {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  /* Pricing Grid */
  .pricing-grid-full {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .pricing-card-v2 {
    padding: 1.5rem;
  }
  
  .plan-price {
    font-size: 2rem !important;
  }
  
  /* Product Page */
  .product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-gallery {
    position: static;
  }
  
  .product-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  
  /* Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .order-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  
  .order-form {
    padding: 0;
  }
  
  /* Buttons */
  .primary-btn,
  .secondary-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* Grids */
  .related-products {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  /* Stats */
  .stats-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* WhatsApp CTA */
  .whatsapp-cta {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  
  .whatsapp-cta-image {
    order: -1;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-section {
    text-align: center;
  }
  
  /* Section spacing */
  .section {
    padding: 2rem 0;
  }
  
  .section-header {
    padding: 0 1rem;
  }
  
  /* Filter bar */
  .filter-bar {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  /* Check list */
  .check-list {
    padding: 0 1rem;
  }
  
  /* Images */
  .feature-img,
  .plan-img {
    max-width: 100%;
    height: auto;
  }
  
  /* WhatsApp float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  /* Success message */
  .success-message {
    padding: 2rem 1rem;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  /* FAQ */
  .faq-grid {
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  /* About content */
  .about-content {
    padding: 0 1rem;
  }
  
  .cta-box {
    padding: 2rem 1rem;
  }
  
  /* All products section */
  .all-products-section {
    padding: 2rem 1rem !important;
    margin: 2rem 0 !important;
  }
  
  /* Reviews section */
  .reviews-section {
    padding: 2rem 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
}

  .hero-home {
    padding: 2rem 1rem;
  }

  .features-trio {
    grid-template-columns: 1fr;
  }

  .pricing-grid-full {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Blog Grid (Articles Page) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: linear-gradient(135deg, rgba(18, 24, 43, 0.8), rgba(26, 31, 53, 0.6));
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(112, 0, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s;
}

.blog-link:hover::after {
  width: 100%;
}

.blog-link:hover {
  transform: translateX(5px);
}

/* Responsive Blog Grid */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
  }
}

.order-summary {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem auto; /* Center the summary */
  max-width: 800px; /* Limit width */
}

.order-summary h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.order-summary-item .label {
  font-weight: bold;
  color: var(--text);
}

.order-summary-item span {
  color: var(--text-muted);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
}

.all-products-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(112, 0, 255, 0.1));
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 30px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  display: block; 
  visibility: visible; 
  opacity: 1; 
}

.all-products-section .section-header h2 {
  color: #00d9ff;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  margin-bottom: 1rem;
}

.all-products-section .section-header p {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.9;
}

.pricing-grid-full {
  min-height: 500px; 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  opacity: 1; /* Explicitly ensure visibility */
  visibility: visible; /* Explicitly ensure visibility */
}

.pricing-card-v2 {
  opacity: 1; /* Explicitly ensure visibility for individual cards */
  visibility: visible; /* Explicitly ensure visibility for individual cards */
  display: flex; /* Ensure flex layout */
  flex-direction: column; /* Stack content vertically */
}

.section-title-sub {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left; /* Ensure title is left-aligned */
}

.input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.input-group input,
.input-group textarea {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 1.05rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%; /* Ensure inputs take full width */
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.order-summary {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem auto; /* Center the summary */
  max-width: 800px; /* Limit width */
}

.order-summary h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.order-summary-item .label {
  font-weight: bold;
  color: var(--text);
}

.order-summary-item span {
  color: var(--text-muted);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  border-radius: 12px; /* Make button corners consistent */
}

/* Installation Guides Section */
.installation-guides-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(112, 0, 255, 0.05));
  border-radius: 30px;
  padding: 4rem 2rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.installation-guides-section .section-header p {
  max-width: 700px;
  margin: 1rem auto;
  color: var(--text-muted);
}

.installation-guides-section .blog-grid {
  margin-top: 3rem;
}

.guides-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.guides-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
