/* VibeKeys - Modern Tech Deals Website */
/* Color Palette: Purple accent #7C3AED */

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --accent: #EC4899;
  --dark: #111827;
  --dark-lighter: #1F2937;
  --light: #F9FAFB;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary-light);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.2rem;
}

.header-search {
  display: flex;
  max-width: 400px;
  flex: 1;
  margin: 0 30px;
}

.header-search input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
  background: var(--dark-lighter);
  color: white;
}

.header-search input::placeholder {
  color: var(--gray);
}

.header-search button {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.header-search button:hover {
  background: var(--primary-dark);
}

nav {
  background: var(--dark-lighter);
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
  flex-wrap: wrap;
}

nav a {
  color: var(--gray-light);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a:hover, nav a.active {
  background: var(--primary);
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.featured-deal {
  background: white;
  border-radius: 16px;
  padding: 30px 40px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  text-align: left;
  color: var(--dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured-deal img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 15px;
}

.featured-deal-info h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.featured-deal-info .category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
}

.price-original {
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: line-through;
}

.discount-badge {
  background: var(--danger);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #059669;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Main Content Layout */
.main-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  padding: 40px 0;
}

.content-full {
  grid-column: 1 / -1;
}

/* Section Titles */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--primary);
  border-radius: 2px;
}

/* Deal Cards Grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.deal-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.deal-card-image {
  position: relative;
  height: 180px;
  background: var(--gray-light);
  overflow: hidden;
}

.deal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f9fa;
  padding: 10px;
}

.deal-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.deal-card-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.deal-card-content {
  padding: 20px;
}

.deal-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card-title a {
  color: var(--dark);
}

.deal-card-title a:hover {
  color: var(--primary);
}

.deal-card-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.deal-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--success);
}

.deal-card-original {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
}

.deal-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.deal-card-store {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
}

.trending-list {
  list-style: none;
}

.trending-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  gap: 12px;
}

.trending-list li:last-child {
  border-bottom: none;
}

.trending-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  width: 25px;
}

.trending-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.trending-info h4 a {
  color: var(--dark);
}

.trending-info h4 a:hover {
  color: var(--primary);
}

.trending-info span {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
}

/* Categories Widget */
.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 8px;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--light);
  border-radius: 8px;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.2s;
}

.categories-list a:hover {
  background: var(--primary);
  color: white;
}

.categories-list span {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.categories-list a:hover span {
  background: white;
  color: var(--primary);
}

/* Newsletter */
.newsletter-widget {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.newsletter-widget h3 {
  border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-widget p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.newsletter-form button {
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Category Header */
.category-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.category-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.category-header p {
  opacity: 0.9;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Article Page */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-header {
  margin-bottom: 30px;
}

.article-category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-header h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 20px;
  color: var(--gray);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-deal-box {
  background: linear-gradient(135deg, var(--light), white);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.article-deal-box img {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  background: #f8f9fa;
  padding: 15px;
}

.article-deal-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.article-deal-prices .price-current {
  font-size: 2.5rem;
}

.article-deal-prices .price-original {
  font-size: 1.5rem;
}

.deal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 25px 0;
  text-align: left;
}

.deal-detail {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.deal-detail label {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
  margin-bottom: 5px;
}

.deal-detail span {
  font-weight: 600;
  color: var(--dark);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.article-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content p {
  margin-bottom: 15px;
}

/* Related Deals */
.related-deals {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-light);
}

/* Comments */
.comments-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-light);
}

/* Search Page */
.search-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.search-box {
  display: flex;
  margin-bottom: 30px;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: 10px 0 0 10px;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary);
}

.search-box button {
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.search-results {
  list-style: none;
}

.search-result {
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-result h3 {
  margin-bottom: 8px;
}

.search-result h3 a {
  color: var(--dark);
}

.search-result p {
  color: var(--gray);
  font-size: 0.95rem;
}

.search-result .price {
  color: var(--success);
  font-weight: 700;
  margin-top: 8px;
}

/* About Page */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-container h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--primary);
}

.about-container p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.disclaimer {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--warning);
  margin-top: 30px;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--dark-lighter);
  color: var(--gray);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Ads */
.ad-container {
  background: var(--gray-light);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin: 20px 0;
  color: var(--gray);
  font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    order: 2;
  }
  
  .featured-deal {
    grid-template-columns: 1fr;
  }
  
  .featured-deal img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-wrap: wrap;
  }
  
  .header-search {
    order: 3;
    max-width: 100%;
    margin: 15px 0 0;
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    padding: 15px;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav a {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .featured-deal {
    padding: 20px;
    margin: 0 10px;
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .article-header h1 {
    font-size: 1.6rem;
  }
  
  .article-deal-prices .price-current {
    font-size: 2rem;
  }
  
  .category-header h1 {
    font-size: 1.8rem;
  }
}

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

.deal-card {
  animation: fadeIn 0.5s ease-out;
}

/* Price Alert Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hot-deal {
  animation: pulse 2s infinite;
}

/* Loading State */
.skeleton {
  background: linear-gradient(90deg, var(--gray-light) 25%, #f0f0f0 50%, var(--gray-light) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Utilities */
.text-center { text-align: center; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* Legal Pages */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.legal-updated {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.legal-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.legal-section h3 {
  font-size: 1.1rem;
  color: var(--dark-lighter);
  margin: 15px 0 10px;
}

.legal-section p {
  margin-bottom: 12px;
  color: var(--dark-lighter);
}

.legal-section ul, .legal-section ol {
  margin: 10px 0 15px 25px;
}

.legal-section li {
  margin-bottom: 8px;
  color: var(--dark-lighter);
}

.contact-box {
  background: var(--gray-light);
  padding: 20px;
  border-radius: 8px;
  margin: 15px 0;
}

/* Contact Page */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  margin: 5px 0;
}

.contact-email:hover {
  color: var(--primary-dark);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
}

.contact-form-wrapper {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--success);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray);
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--gray);
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.affiliate-disclosure {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-container h1,
  .contact-container h1 {
    font-size: 1.8rem;
  }
  
  .footer-links {
    gap: 15px;
  }
}

/* About Page Styles */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-hero {
  text-align: center;
  margin-bottom: 50px;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.about-tagline {
  font-size: 1.3rem;
  color: var(--gray);
}

.about-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-light);
}

.about-section:last-of-type {
  border-bottom: none;
}

.about-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-section p {
  margin-bottom: 15px;
  color: var(--dark-lighter);
  line-height: 1.8;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.how-step {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.how-step p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.category-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.category-item span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.category-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.category-item p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.retailers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.retailer-badge {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.disclaimer-box {
  background: #FEF3C7;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--warning);
}

.disclaimer-box h2 {
  color: var(--dark);
}

.disclaimer-box h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: var(--dark);
}

.disclaimer-box p {
  color: var(--dark-lighter);
}

.contact-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-link {
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.legal-links {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.legal-links li {
  margin-bottom: 10px;
}

.legal-links a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .how-it-works,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .contact-links {
    flex-direction: column;
  }
}

/* Article deal image container */
.article-deal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.article-deal-image img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}
