/* products.css - Styles specific to products page */

.products-container {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Gold metallic shine effect for "real time voice capture" */
.gold-shine {
  color: #FFD700;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    to right, 
    #e0a800 0,    /* Medium gold - not too dark, not too light */
    #f5c935 22%,  /* Brighter gold */
    #FFFF00 45%,  /* Light gold */
    #FF4500 50%,  /* Pure white highlight at center */
    #FFFF00 55%,  /* Light gold */
    #f5c935 78%,  /* Brighter gold */
    #e0a800 100%  /* Medium gold - not too dark, not too light */
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 4s linear infinite;
}

@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

/* Hero Section */
.products-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffe234;
  transition: opacity 0.3s, transform 0.3s;
}

.icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
  color: #ababab;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.faq-item.active .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .icon-minus {
  opacity: 1;
  transform: rotate(0);
}

.view-all-faq {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #ffe234;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.view-all-faq:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ababab;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-btn.primary {
  background-color: #ffe234;
  color: black;
}

.cta-btn.primary:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .products-hero {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .steps-container {
    gap: 20px;
  }
  
  .step {
    max-width: 100%;
  }
  
  .tab-pane {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 40px 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .primary-btn, .secondary-btn {
    width: 100%;
    text-align: center;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-bottom: 15px;
  }
  
  .video-placeholder {
    height: 300px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .tab-pane {
    padding: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
}

  flex-wrap: wrap;
  align-items: center;
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ababab;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-block;
  background-color: #ffe234;
  color: black;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
}

.primary-btn:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid white;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Common Section Styles */
section {
  padding: 40px 20px;
}

section:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.3);
}

.section-header {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10; /* Make sure header stays above cards */
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.section-header p {
  font-size: 1.2rem;
  color: #ababab;
}

/* Features Section */
/* Features Section - FIXED VERSION */
#features.features-section {
  padding: 80px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop - 2 rows of 3 cards each */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffe234;
}

.feature-card p {
  color: #ababab;
  line-height: 1.6;
}

/* Mobile Responsive Rules for Features Section */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet - 3 rows of 2 cards each */
    gap: 25px;
    padding: 0 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* Still 2 columns - 3 rows of 2 cards each */
    gap: 20px;
    padding: 0 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    font-size: 35px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 column on small mobile - 6 rows of 1 card each */
    gap: 15px;
    padding: 0 10px;
  }
  
  .feature-card {
    padding: 20px;
    border-radius: 12px;
  }
  
  .feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .features-grid {
    padding: 0 10px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    font-size: 30px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
}
/* How It Works */

#header-container {
  margin-bottom: -60px !important;
  position: relative;
  z-index: 100;
}
/* CSS - Desktop keeps original sliding, mobile gets simple show/hide */
.steps-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
 top: -20px; /* Increase from -50px to -100px */
  margin-bottom: -10px; /* Prevent affecting sections below */
}

.steps-container {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  width: max-content;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #ffe234;
  color: black;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-content {
  text-align: center;
  width: 100%;
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: white;
}

.step-content p {
  color: #ababab;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Keep original desktop arrows */
.step-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  border: 3px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.2s;
  z-index: 100;
}

.step-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.step-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-step {
  left: 5px;
}

.next-step {
  right: 5px;
}

/* Mobile navigation (separate from desktop arrows) */
.mobile-step-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-nav-btn {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.2s;
}

.mobile-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.step-indicator {
  color: white;
  font-size: 16px;
  min-width: 100px;
  text-align: center;
}

/* Tablet: Keep sliding system but show 2 steps */
@media (max-width: 992px) and (min-width: 769px) {
  .steps-wrapper {
    padding: 0 40px;
  }
  
  .step {
    min-width: 350px;
    max-width: 350px;
    padding: 35px;
  }
  
  .steps-container {
    gap: 25px;
  }
  
  .step-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Mobile: Completely different approach */
@media (max-width: 768px) {
  .steps-wrapper {
    padding: 0 20px;
    overflow: visible; /* Remove overflow hidden */
  }
  
  .steps-container {
    display: block; /* Override flex for mobile */
    width: auto; /* Remove max-content */
    transform: none !important; /* Disable sliding on mobile */
  }
  
  .step {
    display: none; /* Hide all steps by default */
    max-width: 100%;
    min-width: auto;
    width: 100%;
    padding: 30px;
    margin: 0 auto 20px auto;
  }
  
  .step.mobile-active {
    display: flex; /* Show only active step */
  }
  
  /* Hide desktop arrows on mobile */
  .step-nav {
    display: none !important;
  }
  
  /* Show mobile navigation */
  .mobile-step-nav {
    display: flex;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .step-content h3 {
    font-size: 1.4rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .step {
    padding: 25px;
  }
  
  .mobile-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .step-number {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
}

/* Demo Video - Matching Original Dimensions */
.demo-section {
            padding: 2rem;
            max-width: 2000px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #ffffff;
        }
        
        .videos-row {
            display: flex;
            gap: 5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .video-container {
            flex: 1;
            min-width: 700px;
            max-width: 500px;
            position: relative;
            width: 100%;
            height: 300px !important;
            padding-bottom: 35%; /* 21:9 aspect ratio - short and wide */
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .videos-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .video-container {
                max-width: 100%;
            }
            
            .demo-section {
                padding: 1rem;
            }
        }

@media (max-width: 480px) {
  .video-container {
    padding: 0 10px;
  }
  
  .video-container iframe {
    height: 250px; /* Even smaller on very small screens */
    border-radius: 8px;
  }
}

/* Use Cases - Tab System */
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background-color: #444;
}

.tab-btn.active {
  background-color: #ffe234;
  color: #000;
}

.tab-content {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-pane {
  display: none;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.tab-pane.active {
  display: flex;
}

.tab-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.tab-image img {
  max-width: 100%;
  border-radius: 10px;
}

.tab-info {
  flex: 1;
  min-width: 300px;
}

.tab-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffe234;
}

.tab-info p {
  color: #ababab;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tab-info ul {
  color: #ababab;
  padding-left: 20px;
}

.tab-info li {
  margin-bottom: 10px;
  position: relative;
}

/* Comparison Table */
.comparison-table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background-color: #333;
  color: #ababab;
  font-weight: 500;
}

.comparison-table tr:nth-child(odd) {
  background-color: rgba(26, 26, 26, 0.7);
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(40, 40, 40, 0.7);
}

.comparison-table tr:hover {
  background-color: rgba(50, 50, 50, 0.7);
}

.comparison-table td:nth-child(2) {
  color: #ffe234;
  font-weight: 500;
}

/* Testimonial Carousel */
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
}

.testimonial {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  display: none; /* Hide all testimonials by default */
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: white;
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffe234;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: white;
}

.author-info p {
  margin: 0;
  color: #ababab;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: background-color 0.2s;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dot:hover {
  background-color: #666;
}

.dot.active {
  background-color: #ffe234;
}

/* Pricing Preview */
.pricing-cards-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card-preview {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
}

.pricing-card-preview:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card-preview.featured {
  border-color: #ffe234;
  transform: scale(1.05);
}

.pricing-card-preview.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #ffe234;
  color: #000;
  transform: rotate(45deg);
  padding: 5px 40px;
  font-size: 14px;
  font-weight: bold;
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.price {
  font-size: 1.4rem;
  color: #ffe234;
  font-weight: 500;
}

.card-body ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.card-body li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 30px;
  color: #ababab;
}

.card-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffe234;
  font-weight: bold;
}

.view-plans-btn {
  display: block;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.view-plans-btn:hover {
  background-color: #444;
}

.pricing-card-preview.featured .view-plans-btn {
  background-color: #ffe234;
  color: #000;
}

.pricing-card-preview.featured .view-plans-btn:hover {
  background-color: #ffd700;
}

/* FAQ Preview */
.faq-preview-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
  flex: 1;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 15px;
}

.icon-plus,
.icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;

/* Add this to your products.css file */
a.feature-link:link {
  color: #ffe234;
  text-decoration: none;
}

a.feature-link:visited {
  color: #ffe234; /* Same color for visited links */
  text-decoration: none;
}

a.feature-link {
  font-weight: 500;
  display: inline-block;
  background-color: rgba(255, 226, 52, 0.15);
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 10px;
  border: 1px solid rgba(255, 226, 52, 0.3);
  box-shadow: 0 2px 8px rgba(255, 226, 52, 0.2);
  transition: all 0.3s ease;
}

a.feature-link:hover {
  color: #ffe234;
  background-color: rgba(255, 226, 52, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 226, 52, 0.3);
}

a.config-guide-link,
a.config-guide-link:link,
a.config-guide-link:visited,
a.config-guide-link:hover {
  color: #ff5555; /* Change to your desired color */
}

/* Shortcut Buttons Styles - Add to products.css */

.shortcut-buttons {
  display: flex;
  gap: 15px;
  margin: 25px 0 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.shortcut-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shortcut-btn svg {
  flex-shrink: 0;
}

.shortcut-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.windows-btn {
  color: #ffffff;
  border-color: rgba(0, 120, 212, 0.5);
}

.windows-btn:hover {
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.2), rgba(0, 120, 212, 0.1));
  border-color: #0078d4;
  color: #ffffff;
}

.mac-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.mac-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .shortcut-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .shortcut-btn {
    width: 200px;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .shortcut-btn {
    width: 180px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

