/* ==================== PAGE HEADER ==================== */

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ==================== PRODUCTS PAGE STYLES ==================== */

.product-filters {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}

.search-bar button {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.filter-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-options select {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: var(--white);
  font-size: 1rem;
  min-width: 150px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.action-btn:hover {
  background: var(--white);
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-rating {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-btn {
  width: 100%;
}

/* ==================== CATEGORIES PAGE STYLES ==================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(59, 130, 246, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.category-info {
  padding: 1.5rem;
}

.category-info h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.category-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.category-stats span {
  background: rgba(59, 130, 246, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

/* ==================== DEALS PAGE STYLES ==================== */

.deals-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.deals-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.deals-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.deals-badge {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.timer-item {
  text-align: center;
  min-width: 80px;
}

.timer-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.timer-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.featured-deal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.deal-content h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.deal-description {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.deal-pricing {
  margin-bottom: 2rem;
}

.deal-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

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

.savings {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.9rem;
}

.deal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.deal-features span {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.deal-image {
  text-align: center;
}

.deal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.deal-discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
}

.deal-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.deal-category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.deal-category-card:hover {
  transform: translateY(-3px);
}

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

.deal-category-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.deal-category-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.deal-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-3px);
}

.deal-card .deal-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.deal-card .deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.05);
}

.deal-card .deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ef4444;
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.deal-card .deal-content {
  padding: 1.5rem;
}

.deal-card .deal-category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.deal-card .product-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.deal-card .product-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.deal-card .deal-pricing {
  margin-bottom: 1rem;
}

.deal-card .deal-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}

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

.deal-alerts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.alert-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.alert-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.alert-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
}

.alert-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}

.alert-form button {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.alert-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.benefit span {
  color: var(--text-light);
}

/* ==================== SUPPORT PAGE STYLES ==================== */

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.support-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-3px);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.support-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.support-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-contact {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.support-contact strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.help-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.topic-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.topic-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.topic-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.topic-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.topic-link:hover {
  color: var(--primary-dark);
}

.support-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.detail-content h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.detail-info h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.detail-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-section .form-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-form-section .form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.support-form {
  display: grid;
  gap: 1.5rem;
}

.support-form .form-group {
  display: flex;
  flex-direction: column;
}

.support-form .form-group label {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.support-form .form-group input,
.support-form .form-group select,
.support-form .form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.support-form .form-group input:focus,
.support-form .form-group select:focus,
.support-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ==================== ABOUT PAGE STYLES ==================== */

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.story-text h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.story-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.story-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.impact-text h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.impact-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.impact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.highlight p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.impact-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-3px);
}

.member-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h4 {
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.25rem;
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-light);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.promise-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.promise-content h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.promise-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.promise-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promise-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.promise-icon {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.promise-point span {
  color: var(--text-light);
  line-height: 1.6;
}

.promise-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.join-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.join-section h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.join-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.join-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== CONTACT PAGE STYLES ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info>p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--text-light);
  line-height: 1.5;
}

.business-hours {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.business-hours h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hour-item:last-child {
  border-bottom: none;
}

.contact-form-container h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group label {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 3px;
  margin-top: 0.25rem;
}

.checkbox-label input:checked+.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.map-container {
  margin: 2rem 0;
}

.map-placeholder {
  background: var(--white);
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

.map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-placeholder p {
  margin-bottom: 1rem;
}

.map-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.map-features span {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==================== NEWSLETTER SECTION ==================== */

.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.newsletter-section h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.newsletter-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #374151;
}

/* ==================== MOBILE RESPONSIVE FOR NEW PAGES ==================== */

@media (max-width: 768px) {
  .product-filters {
    padding: 1.5rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .filter-options {
    flex-direction: column;
  }

  .products-grid,
  .categories-grid,
  .deals-grid,
  .support-grid,
  .help-topics,
  .values-grid,
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .featured-deal,
  .story-content,
  .impact-content,
  .contact-grid,
  .support-detail,
  .deal-alerts,
  .promise-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .timer-item {
    min-width: 60px;
  }

  .deal-categories {
    grid-template-columns: 1fr;
  }

  .alert-form {
    flex-direction: column;
  }

  .alert-form button {
    width: 100%;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .join-actions {
    flex-direction: column;
  }

  .join-actions .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .method-icon {
    align-self: center;
  }

  .promise-points {
    gap: 0.75rem;
  }

  .impact-highlights {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    gap: 0.5rem;
  }

  .map-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .deals-hero-content h1 {
    font-size: 2.5rem;
  }

  .timer-number {
    font-size: 2rem;
  }

  .deal-content h2 {
    font-size: 1.5rem;
  }

  .support-card,
  .topic-card,
  .value-card,
  .team-member {
    padding: 1.5rem;
  }

  .contact-method {
    text-align: left;
  }

  .method-icon {
    align-self: flex-start;
  }
}

/* Override base colors */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
}

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

.section-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

/* Typography */
body {
  font-family: 'Space Grotesk', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

/* Navbar */
.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--primary);
}

.navbar-link::after {
  background: var(--primary);
}

/* Hero Tech */
.hero-tech {
  min-height: 100vh;
  background: url('https://images.pexels.com/photos/1092644/pexels-photo-1092644.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-tech .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(59, 130, 246, 0.7) 100%);
}

.hero-tech .container {
  position: relative;
  z-index: 1;
}

.hero-tech .hero-content {
  max-width: 700px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
}

.hero-tech .hero-badge {
  background: rgba(59, 130, 246, 0.3);
  color: var(--white);
}

.hero-tech .hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-tech .hero-title span {
  color: var(--accent);
}

.hero-tech .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.hero-tech .hero-buttons {
  justify-content: center;
}

.hero-tech .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-tech .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.product-content {
  padding: 20px;
}

.product-category {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-rating {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.product-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

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

.product-btn {
  width: 100%;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.category-card span {
  color: var(--text-light);
  font-size: 0.8125rem;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Deals Grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.deal-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.deal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 1;
}

.deal-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.deal-content {
  padding: 24px;
}

.deal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.deal-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.deal-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: 8px;
}

.timer-label {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.timer-value {
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 992px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.newsletter-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
}

.newsletter-form .form-input {
  flex: 1;
  border: none;
}

.newsletter-form .btn-primary {
  background: var(--accent);
}

.newsletter-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* Footer */
.footer-brand span {
  color: var(--primary);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-link:hover {
  color: var(--primary);
}

/* Section Alt */
.section-alt {
  background: var(--bg-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive Image Containers */
@media (max-width: 768px) {

  .product-image,
  .category-image,
  .deal-image,
  .member-image,
  .story-image,
  .impact-image,
  .promise-image {
    aspect-ratio: 1;
    height: auto;
  }

  .product-image {
    max-width: 100%;
  }

  .category-image {
    aspect-ratio: 4/3;
  }

  .story-image,
  .impact-image,
  .promise-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {

  .product-image,
  .category-image,
  .deal-image,
  .member-image,
  .story-image,
  .impact-image,
  .promise-image {
    aspect-ratio: 1;
    height: auto;
  }
}