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

:root {
  --primary-color: #1a5f7a;
  --secondary-color: #159895;
  --accent-color: #57c5b6;
  --dark-color: #002b36;
  --light-color: #f8f9fa;
  --text-color: #333;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --gold-color: #d4af37;
}

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

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

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

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

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

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

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #4ab5a5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.stat-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.about-products {
  padding: 80px 0;
}

.about-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.products {
  padding: 80px 0;
  background-color: var(--light-color);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

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

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.description {
  color: #666;
  margin-bottom: 20px;
}

.poll-section {
  padding: 80px 0;
}

.poll-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.poll-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.poll-option {
  display: block;
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.poll-option:hover {
  border-color: var(--secondary-color);
  background-color: rgba(21, 152, 149, 0.05);
}

.poll-option input {
  margin-right: 10px;
}

.poll-results {
  margin-top: 30px;
}

.result-bar {
  margin-bottom: 20px;
}

.result-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.result-progress {
  height: 30px;
  background-color: var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 5px;
}

.result-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: width 0.5s;
}

.result-percent {
  font-size: 0.9rem;
  color: #666;
}

.testimonials {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

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

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stars {
  color: var(--gold-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #666;
}

.footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-color);
}

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

.social-links a {
  color: #fff;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

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

.about-story,
.team,
.values {
  padding: 80px 0;
}

.about-story:nth-child(even),
.values {
  background-color: var(--light-color);
}

.about-story h2,
.team h2,
.values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

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

.team-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

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

.team-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0 20px;
}

.team-card p:last-child {
  padding: 20px;
  color: #666;
}

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

.value-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

.product-detail {
  padding: 80px 0;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-detail-info h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.product-rating {
  margin-bottom: 30px;
}

.product-rating .stars {
  color: var(--gold-color);
  font-size: 1.2rem;
}

.product-description,
.product-features,
.product-highlights {
  margin-bottom: 30px;
}

.product-features h3,
.product-highlights h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-features ul,
.product-highlights ul {
  list-style-position: inside;
  color: #666;
}

.product-features li,
.product-highlights li {
  margin-bottom: 10px;
  padding-left: 10px;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.cart-section {
  padding: 80px 0;
  min-height: 60vh;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty svg {
  color: var(--border-color);
  margin-bottom: 30px;
}

.cart-empty h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-items h2,
.cart-summary h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 12px;
  margin-bottom: 20px;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cart-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.remove-item {
  color: var(--danger-color);
  cursor: pointer;
  text-decoration: underline;
}

.cart-summary {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 15px;
  border-top: 2px solid var(--border-color);
  margin-top: 15px;
}

.checkout-section {
  padding: 80px 0;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.checkout-form h2,
.checkout-summary h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.checkout-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 12px;
}

.checkout-summary {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-totals {
  margin-top: 20px;
}

.secure-checkout {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  color: var(--success-color);
  font-weight: 600;
}

.success-section {
  padding: 80px 0;
  min-height: 70vh;
}

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

.success-icon {
  color: var(--success-color);
  margin-bottom: 30px;
}

.success-content h1 {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.success-info {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  text-align: left;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.success-next-steps h2 {
  color: var(--primary-color);
  margin: 50px 0 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.step {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-section {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-content h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.blog-content h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-content h2 a:hover {
  color: var(--secondary-color);
}

.blog-read-more {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-read-more:hover {
  color: var(--primary-color);
}

.blog-post {
  padding: 80px 0;
}

.post-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.post-category {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.post-date,
.post-read-time {
  color: #666;
}

.post-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-author img {
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--primary-color);
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.post-featured-image {
  margin-bottom: 50px;
}

.post-featured-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content .lead {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 40px;
  font-weight: 500;
}

.post-content h2 {
  color: var(--primary-color);
  margin: 40px 0 20px;
  font-size: 2rem;
}

.post-content p {
  margin-bottom: 20px;
}

.post-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
}

.post-cta h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.post-cta p {
  margin-bottom: 25px;
  opacity: 0.95;
}

.post-share {
  max-width: 800px;
  margin: 50px auto;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.post-share h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
}

.share-btn {
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.share-btn:hover {
  opacity: 0.8;
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.related-posts {
  max-width: 1200px;
  margin: 80px auto 0;
  padding-top: 50px;
  border-top: 2px solid var(--border-color);
}

.related-posts h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.related-post-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

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

.related-post-card h4 {
  padding: 20px;
}

.related-post-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.related-post-card a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .contact-wrapper,
  .product-detail-wrapper,
  .cart-content,
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo span {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}