/* 
  goerglasowm E-commerce Theme
  Modern Budget Management & Financial Literacy
*/

/* ======== GLOBAL STYLES ======== */
:root {
  --primary-color: #2c6ecb;
  --secondary-color: #234e8e;
  --accent-color: #f7c948;
  --dark-color: #1a2942;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-bg: #1a2942;
  --font-primary: 'Roboto', 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--light-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

button {
  cursor: pointer;
  font-family: var(--font-primary);
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

section {
  padding: 6rem 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
}

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

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

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

.secondary-btn:hover {
  background-color: var(--gray-100);
  color: var(--secondary-color);
}

/* Icons styling */
.fa, .fas, .far, .fab {
  margin-right: 0.5rem;
}

/* ======== HEADER STYLES ======== */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 2.4rem;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 1rem;
}

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: none;
  padding: 1rem 0;
  position: relative;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.cart-icon {
  position: relative;
  font-size: 1.8rem;
}

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

.mobile-menu-btn {
  display: none;
  font-size: 2.4rem;
  color: var(--gray-800);
  cursor: pointer;
}

/* ======== HERO SECTION ======== */
.hero {
  background: linear-gradient(rgba(27, 38, 59, 0.8), rgba(27, 38, 59, 0.9)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 10rem 0;
  position: relative;
}

.hero h1 {
  font-size: 4.8rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== FEATURES SECTION ======== */
.features {
  background-color: white;
  text-align: center;
}

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

.feature {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature i {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 5rem 0;
}

.stat {
  text-align: center;
  padding: 2rem;
}

.stat span {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat p {
  font-size: 1.8rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

.cta {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.cta p {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ======== ABOUT PRODUCTS SECTION ======== */
.about-products {
  background-color: var(--gray-100);
}

.about-products h2 {
  margin-bottom: 3rem;
}

.about-products h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.about-products p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ======== PRODUCTS SECTION ======== */
.products {
  background-color: white;
}

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

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

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

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

.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-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

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

.product-card .description {
  padding: 0 1.5rem;
  font-size: 1.4rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-actions {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-actions .btn {
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  flex-grow: 1;
  text-align: center;
}

/* ======== TESTIMONIALS SECTION ======== */
.testimonials {
  background-color: var(--gray-100);
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.quote {
  position: relative;
  padding: 0 3rem;
}

.quote .fa-quote-left {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  opacity: 0.3;
  font-size: 2.4rem;
}

.quote .fa-quote-right {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--primary-color);
  opacity: 0.3;
  font-size: 2.4rem;
}

.quote p {
  font-size: 1.8rem;
  line-height: 1.7;
}

.author {
  margin-top: 2rem;
}

.author .name {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author .title {
  color: var(--gray-600);
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-controls button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-controls button:hover {
  background-color: var(--secondary-color);
}

.slider-controls button i {
  margin: 0;
}

/* ======== NEWSLETTER SECTION ======== */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--warning-color);
}

/* ======== FOOTER STYLES ======== */
footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 5rem 0 2rem;
}

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

.footer-col h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col p {
  margin-bottom: 1rem;
  color: var(--gray-400);
}

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

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

.footer-col ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-col i {
  margin-right: 1rem;
  color: var(--accent-color);
}

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

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

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

.social-links a i {
  margin-right: 0;
}

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

.copyright p {
  margin-bottom: 0;
  color: var(--gray-500);
  font-size: 1.4rem;
}

/* ======== PRODUCT DETAIL PAGE ======== */
.product-detail {
  padding: 5rem 0;
}

.breadcrumb {
  font-size: 1.4rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

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

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

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.product-images {
  position: relative;
}

.main-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.product-info h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-id {
  color: var(--gray-600);
  font-size: 1.4rem;
  margin-bottom: 0;
}

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

.product-rating i {
  color: var(--warning-color);
  margin-right: 0.2rem;
}

.product-rating span {
  color: var(--gray-600);
  margin-left: 0.5rem;
}

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

.current-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 1rem;
}

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

.discount {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-weight: 700;
  border-radius: var(--border-radius);
  margin-left: 1rem;
}

.product-short-description {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 1.7;
}

.quantity-selector {
  margin-bottom: 2rem;
}

.quantity-selector label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  overflow: hidden;
  width: fit-content;
}

.quantity-controls button {
  background-color: var(--light-color);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-controls input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.action-buttons .btn {
  flex-grow: 1;
}

.product-features {
  margin-bottom: 3rem;
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.product-features ul li i {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 1.8rem;
  margin-top: 0.2rem;
}

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

.shipping-info p {
  margin-bottom: 0.5rem;
}

.shipping-info p:last-child {
  margin-bottom: 0;
}

.shipping-info i {
  color: var(--primary-color);
}

.product-tabs {
  margin-bottom: 5rem;
}

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

.tab-btn {
  padding: 1.5rem 2.5rem;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

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

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

.tab-content {
  display: none;
}

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

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-300);
}

.specs-table th, .specs-table td {
  padding: 1.5rem;
  text-align: left;
}

.specs-table th {
  font-weight: 600;
  width: 30%;
  color: var(--gray-700);
}

.review-summary {
  display: flex;
  gap: 5rem;
  margin-bottom: 4rem;
}

.average-rating {
  text-align: center;
}

.rating-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stars {
  color: var(--warning-color);
  font-size: 1.8rem;
  margin: 1rem 0;
}

.rating-breakdown {
  flex-grow: 1;
}

.breakdown-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.breakdown-row .stars {
  width: 80px;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.progress-bar {
  flex-grow: 1;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 1rem;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
}

.percentage {
  width: 50px;
  text-align: right;
  color: var(--gray-700);
  font-size: 1.4rem;
}

.review-item {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.reviewer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.review-date {
  color: var(--gray-600);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.review-content p {
  margin-bottom: 0;
}

.load-more-reviews {
  display: block;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  margin-bottom: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--gray-200);
}

.faq-question i {
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem;
  margin-top: 1rem;
}

.related-products h2 {
  margin-bottom: 3rem;
}

/* ======== ABOUT US PAGE ======== */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.about-intro {
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}

.values-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.about-stats {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  height: fit-content;
}

.stat-item {
  text-align: center;
  margin-bottom: 3rem;
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  color: var(--gray-700);
  font-size: 1.6rem;
}

.team {
  background-color: var(--gray-100);
  padding: 6rem 0;
}

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

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

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

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

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

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
  font-size: 2rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

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

.team-member .social-links {
  margin: 0 0 2rem;
}

.approach {
  padding: 6rem 0;
}

.approach h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.approach-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.approach-item .icon i {
  font-size: 3rem;
  color: white;
  margin-right: 0;
}

.approach-item h3 {
  margin-bottom: 1.5rem;
}

.approach-item p {
  margin-bottom: 0;
}

.partnerships {
  background-color: var(--gray-100);
  padding: 6rem 0;
}

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

.partnerships > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

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

.partner {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.partner h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.partner p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.cta-section {
  background: linear-gradient(rgba(27, 38, 59, 0.9), rgba(27, 38, 59, 0.9)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ======== CONTACT PAGE ======== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

.info-item i {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-right: 2rem;
  margin-top: 0.5rem;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.info-content p {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.info-content .hours {
  font-size: 1.4rem;
  color: var(--gray-600);
}

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

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

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  margin-bottom: 3rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

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

.checkbox-group input {
  width: auto;
  margin-top: 0.5rem;
  margin-right: 1rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-section {
  background-color: var(--gray-100);
  padding: 6rem 0;
}

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

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

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

.form-help {
  font-size: 1.4rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ======== CART PAGE ======== */
.cart-empty {
  text-align: center;
  padding: 5rem 0;
  display: none;
}

.empty-cart-icon {
  font-size: 6rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

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

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

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}

.cart-table th {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-300);
  font-weight: 600;
}

.cart-table td {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--gray-300);
}

.product-col {
  width: 40%;
}

.price-col, .subtotal-col {
  width: 15%;
}

.quantity-col {
  width: 20%;
}

.actions-col {
  width: 10%;
  text-align: right;
}

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

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

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

.product-info p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.remove-item {
  background: none;
  border: none;
  color: var(--danger-color);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.remove-item:hover {
  color: #b32638;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.cart-coupon {
  display: flex;
  gap: 1rem;
}

.cart-coupon input {
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  width: 200px;
}

.cart-update {
  display: flex;
  gap: 1rem;
}

.cart-totals {
  width: 400px;
  margin-left: auto;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.cart-totals h2 {
  margin-bottom: 2rem;
}

.totals-table {
  width: 100%;
  margin-bottom: 3rem;
}

.totals-table th {
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
}

.totals-table td {
  text-align: right;
  padding: 1rem 0;
}

.total-row {
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.grand-total th, .grand-total td {
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color);
}

.checkout-button {
  text-align: center;
}

.checkout-button .btn {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.8rem;
}

.recommended-products {
  background-color: var(--gray-100);
  padding: 6rem 0;
}

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

.cart-help {
  padding: 6rem 0;
}

.help-content {
  text-align: center;
}

.help-content h2 {
  margin-bottom: 4rem;
}

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

.help-option {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.help-option:hover {
  transform: translateY(-5px);
}

.help-option i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

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

.help-option p {
  margin-bottom: 2rem;
}

/* ======== CHECKOUT PAGE ======== */
.checkout-empty {
  text-align: center;
  padding: 5rem 0;
  display: none;
}

.empty-checkout-icon {
  font-size: 6rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
}

.customer-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.customer-info h2, .customer-info h3 {
  margin-bottom: 2.5rem;
}

.customer-info .form-group {
  display: inline-block;
  width: calc(50% - 1rem);
  margin-right: 1rem;
  vertical-align: top;
}

.customer-info .form-group.full-width {
  width: 100%;
  margin-right: 0;
}

.required-checkbox label::after {
  content: " *";
  color: var(--danger-color);
}

.order-summary {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.order-summary h2 {
  margin-bottom: 2.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.order-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.order-item p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.order-totals {
  margin: 2.5rem 0;
}

.order-totals .total-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.secure-checkout {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2.5rem;
}

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

.secure-checkout p:first-child {
  font-weight: 600;
  color: var(--success-color);
}

.digital-products-note, .satisfaction-guarantee {
  margin-bottom: 2rem;
}

.digital-products-note h3, .satisfaction-guarantee h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.digital-products-note p, .satisfaction-guarantee p {
  margin-bottom: 0;
}

.trust-indicators {
  background-color: var(--light-color);
  padding: 6rem 0;
  border-top: 1px solid var(--gray-300);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

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

.trust-item i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.trust-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--gray-700);
}

/* ======== SUCCESS PAGE ======== */
.success-section {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 5rem 3rem;
  box-shadow: var(--box-shadow);
}

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

.success-message {
  font-size: 2.2rem;
  color: var(--gray-700);
  margin-bottom: 3rem;
}

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

.next-steps {
  text-align: left;
  margin-bottom: 4rem;
}

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

.next-steps ol {
  margin-left: 2rem;
}

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

.support-info {
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.support-info h2 {
  margin-bottom: 2rem;
}

.support-info p {
  margin-bottom: 1rem;
}

.support-info a {
  font-weight: 600;
}

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

.newsletter-note {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

/* ======== COOKIE CONSENT ======== */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  padding: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-content p {
  margin-bottom: 0;
}

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

.cookie-policy {
  font-size: 1.4rem;
}

/* ======== NOTIFICATION ======== */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: white;
  border-left: 4px solid var(--success-color);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateX(calc(100% + 20px));
  transition: transform 0.3s ease;
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  border-left-color: var(--danger-color);
}

.notification.error i {
  color: var(--danger-color);
}

.notification p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.notification i {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 2rem;
}

.spell-check-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .order-summary {
    position: static;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }

  section {
    padding: 4rem 0;
  }

  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  nav.show {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 2rem;
  }

  nav ul li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .customer-info .form-group {
    width: 100%;
    margin-right: 0;
  }

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

  .cart-coupon, .cart-update {
    width: 100%;
  }

  .cart-totals {
    width: 100%;
  }

  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
  }

  .cart-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .cart-table tr {
    margin-bottom: 2rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
  }

  .cart-table td {
    border: none;
    border-bottom: 1px solid var(--gray-300);
    position: relative;
    padding-left: 50%;
    display: flex;
    align-items: center;
  }

  .cart-table td:before {
    position: absolute;
    left: 1.5rem;
    width: 45%;
    white-space: nowrap;
    font-weight: 700;
  }

  .cart-table td:nth-of-type(1):before { content: "Product"; }
  .cart-table td:nth-of-type(2):before { content: "Price"; }
  .cart-table td:nth-of-type(3):before { content: "Quantity"; }
  .cart-table td:nth-of-type(4):before { content: "Subtotal"; }
  .cart-table td:nth-of-type(5):before { content: "Actions"; }

  .product-info {
    width: 100%;
  }

  .action-buttons {
    flex-direction: column;
  }

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

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

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }

  .product-features ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-features ul li i {
    margin-bottom: 0.5rem;
  }

  .review-summary {
    flex-direction: column;
    gap: 3rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .faq-grid, .approach-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
