:root {
  --primary-color: #2c67b3;
  --primary-dark: #1a4a8f;
  --primary-light: #5486cb;
  --secondary-color: #34a853;
  --secondary-dark: #257e3e;
  --secondary-light: #6ece8a;
  --accent-color: #f9a826;
  --tertiary-color: #9c27b0;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --light-gray: #e2e8f0;
  --border-color: #cbd5e1;
  --danger-color: #ef4444;
  --success-color: #10b981;
  --text-color: #334155;
  --text-light: #94a3b8;
  --background-color: #ffffff;
  --card-bg: #ffffff;
  --header-height: 80px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-max-width: 1200px;
  --card-radius: 10px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-tertiary:hover {
  background-color: rgba(44, 103, 179, 0.1);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero .slogan {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.future-quote {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.future-quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.future-quote cite {
  font-style: normal;
  font-weight: 600;
}

/* Advantages Section */
.advantages {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.advantages h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.advantage-item {
  background-color: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 103, 179, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.advantage-icon svg {
  width: 40px;
  height: 40px;
}

.advantage-item h3 {
  margin-bottom: 1rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 3rem;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

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

.stat-text {
  font-size: 1.1rem;
  color: var(--gray-color);
}

.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--card-radius);
  text-align: center;
}

.cta-banner h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Products Section */
.about-products {
  padding: 5rem 0;
  background-color: white;
}

.about-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-products p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quality-guarantees, .company-history {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.quality-guarantees h3, .company-history h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.quality-guarantees ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.quality-guarantees li, .company-history p {
  margin-bottom: 0.75rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.products h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

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

.product-card {
  background-color: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.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-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-roi, .product-investment {
  display: block;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-col p, .footer-col address {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-light);
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 41, 59, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-more-info {
  font-size: 0.9rem;
}

.cookie-more-info a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-more-info a:hover {
  color: white;
}

/* Product Details Page */
.product-details {
  padding: 4rem 0;
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.breadcrumbs a {
  color: var(--gray-color);
}

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

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-details-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-details-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-details-info h1 {
  margin-bottom: 0.5rem;
}

.product-meta {
  margin: 1.5rem 0;
}

.meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.meta-item svg {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.product-price-box {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.product-price {
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

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

.product-actions {
  display: flex;
  gap: 1rem;
}

/* Product Tabs */
.product-tabs {
  margin-bottom: 4rem;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.tab-content h3 {
  margin: 2rem 0 1rem;
  color: var(--dark-color);
}

.tab-content ul, .tab-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.tab-content ul li, .tab-content ol li {
  margin-bottom: 0.5rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-member {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.team-member h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.team-position {
  font-weight: 600;
  color: var(--gray-color);
  margin-bottom: 1rem;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.advisor {
  background-color: white;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.advisor h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Financial Metrics */
.financial-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.metric {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.metric h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--gray-color);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.investment-allocation {
  margin-bottom: 2.5rem;
}

.allocation-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.allocation-label {
  width: 40%;
}

.allocation-bar {
  flex-grow: 1;
  height: 12px;
  background-color: var(--light-gray);
  border-radius: 6px;
  margin: 0 1rem;
  overflow: hidden;
}

.allocation-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 6px;
}

.allocation-percentage {
  width: 40px;
  text-align: right;
  font-weight: 600;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.financial-table th, .financial-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.financial-table th {
  background-color: var(--light-color);
  font-weight: 600;
}

.financial-table tr:last-child td {
  border-bottom: none;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 2rem 0 3rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--light-gray);
  border: 2px solid white;
}

.timeline-item.completed::before {
  background-color: var(--success-color);
}

.timeline-item.current::before {
  background-color: var(--accent-color);
}

.timeline-date {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content {
  background-color: white;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
  margin-top: 4rem;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-product {
  background-color: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.related-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-product h3, .related-product p, .related-product a {
  padding: 0 1rem;
}

.related-product h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

.related-product p {
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

.related-product a {
  display: inline-block;
  margin: 1rem 0 1.5rem;
}

/* About Us Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.about-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.about-history {
  padding: 5rem 0;
}

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

.about-content p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mission-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-mission {
  padding: 5rem 0;
  background-color: var(--light-color);
}

/* Team Section */
.team {
  padding: 5rem 0;
}

.team h2, .team .section-description {
  text-align: center;
  margin-bottom: 3rem;
}

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

.team-member-card {
  background-color: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-member-card h3, .team-member-card p {
  padding: 0 1.5rem;
}

.team-member-card h3 {
  margin: 1.5rem 0 0.25rem;
}

.team-member-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-card .social-links {
  padding: 0 1.5rem 1.5rem;
  justify-content: flex-start;
}

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.partners-section h2, .partners-section .section-description {
  text-align: center;
  margin-bottom: 3rem;
}

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

.partner-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.partner-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Certifications Section */
.certifications {
  padding: 5rem 0;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.certification-item {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.certification-icon {
  margin-bottom: 1.5rem;
  color: var(--success-color);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.contact-details h2, .contact-form-container h2 {
  margin-bottom: 2.5rem;
  position: relative;
}

.contact-details h2::after, .contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(44, 103, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.contact-text h3 {
  margin-bottom: 0.5rem;
}

.contact-text p {
  margin-bottom: 0.25rem;
}

.social-contact {
  margin-top: 3rem;
}

.social-contact h3 {
  margin-bottom: 1.5rem;
}

.social-contact .social-links {
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form */
.contact-form, .checkout-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 103, 179, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

.form-notice {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(44, 103, 179, 0.05);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Cart Page */
.cart-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cart-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.cart-content {
  padding: 5rem 0;
}

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

.empty-icon {
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.cart-empty h2 {
  margin-bottom: 1rem;
}

.cart-empty p {
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.cart-items {
  margin-bottom: 3rem;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
}

.cart-products {
  margin-bottom: 2rem;
}

.cart-product {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  gap: 1rem;
  padding: 1.5rem 0;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.product-info {
  display: flex;
  align-items: center;
}

.product-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-right: 1rem;
}

.product-name {
  font-weight: 600;
}

.product-category {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.product-quantity {
  display: flex;
  align-items: center;
}

.quantity-input {
  width: 60px;
  text-align: center;
  margin: 0 0.5rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--border-color);
}

.product-price, .product-total {
  font-weight: 600;
}

.product-remove button {
  background-color: transparent;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
  transition: var(--transition);
}

.product-remove button:hover {
  color: var(--danger-color);
  transform: scale(1.1);
}

.cart-summary {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-radius);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-notice {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Recommended Section */
.recommended-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.recommended-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.recommended-item {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.recommended-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recommended-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.recommended-content {
  padding: 1rem;
  flex-grow: 1;
}

.recommended-content h3 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.recommended-content p {
  margin-bottom: 0.5rem;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.recommended-price {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Checkout Page */
.checkout-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.checkout-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.checkout-content {
  padding: 5rem 0;
}

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

.checkout-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.checkout-form h2 {
  margin-bottom: 2rem;
}

.checkout-summary {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-radius);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.checkout-summary h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.checkout-items {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.checkout-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-right: 1rem;
}

.checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-info {
  flex-grow: 1;
}

.checkout-item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.checkout-item-category {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

.checkout-item-price {
  display: flex;
  justify-content: space-between;
}

.checkout-item-quantity {
  color: var(--gray-color);
}

.checkout-totals {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.checkout-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-help {
  margin-bottom: 2rem;
}

.checkout-help h3 {
  margin-bottom: 1rem;
}

.checkout-help p {
  margin-bottom: 0.5rem;
}

.security-notice {
  display: flex;
  align-items: center;
  background-color: rgba(44, 103, 179, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.security-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.security-text {
  font-size: 0.9rem;
}

/* Success Page */
.success-content {
  padding: 5rem 0;
}

.success-message {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-message h1 {
  margin-bottom: 2rem;
}

.success-details {
  margin-bottom: 3rem;
}

.next-steps {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-radius);
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h2 {
  margin-bottom: 1.5rem;
}

.next-steps ol {
  padding-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.75rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.more-opportunities {
  margin-top: 5rem;
}

.more-opportunities h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.opportunity-item {
  background-color: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.opportunity-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.opportunity-item h3, .opportunity-item p, .opportunity-item a {
  padding: 0 1.5rem;
}

.opportunity-item h3 {
  margin: 1.5rem 0 0.5rem;
}

.opportunity-item p {
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

.opportunity-item a {
  display: inline-block;
  margin: 1rem 0 1.5rem;
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --container-max-width: 1140px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-max-width: 960px;
  }
  
  .product-details-grid, .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .product-details-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --container-max-width: 720px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-product {
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
  }
  
  .product-quantity {
    display: none;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  :root {
    --container-max-width: 540px;
  }
  
  header .container {
    flex-direction: column;
    padding: 1rem;
    height: auto;
  }
  
  header {
    height: auto;
    position: relative;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-product {
    grid-template-columns: 2fr 1fr 0.5fr;
  }
  
  .product-price {
    display: none;
  }
  
  .cart-actions {
    flex-direction: column;
  }
}

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

.fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--gray-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}
