/* Global Styles */
:root {
  --primary-color: #4a6fa5;
  --secondary-color: #334c7e;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --light-text: #666666;
  --lighter-text: #999999;
  --bg-color: #ffffff;
  --light-bg: #f9f9f9;
  --border-color: #e1e1e1;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --font-main: 'Roboto', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

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

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

.btn-add-cart, .btn-buy-now, .btn-view {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  margin-bottom: 8px;
  border: none;
}

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

.btn-add-cart:hover {
  background-color: var(--secondary-color);
}

.btn-buy-now {
  background-color: var(--accent-color);
  color: white;
}

.btn-buy-now:hover {
  background-color: #c0392b;
}

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

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

.btn-cookie {
  background-color: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-cookie:hover {
  background-color: var(--light-bg);
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

#accept-cookies:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  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;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

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

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

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  background-image: linear-gradient(rgba(74, 111, 165, 0.8), rgba(74, 111, 165, 0.8)), url('https://source.unsplash.com/random/1200x600/?books');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

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

/* Features Section */
.features {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.feature {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--light-bg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

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

.stat-text {
  font-size: 1rem;
  color: var(--light-text);
}

.cta {
  text-align: center;
}

/* About Books Section */
.about-books {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.about-books h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.about-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Tips Section */
.tips {
  padding: 40px 0;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tips h2 {
  margin-bottom: 20px;
}

.random-fact {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

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

/* Products Section */
.products {
  padding: 60px 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.product-grid.small {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

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

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

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

.product-grid.small .product-card img {
  height: 200px;
}

.product-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.product-card .author {
  padding: 0 15px;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.product-card .price {
  padding: 0 15px 15px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-card .rating {
  padding: 0 15px 15px;
  color: #f39c12;
  font-size: 0.9rem;
}

.product-card .rating span {
  color: var(--light-text);
  margin-left: 5px;
}

.product-card a {
  display: block;
  color: var(--text-color);
}

.product-card a:hover {
  color: var(--text-color);
}

.product-card .btn-add-cart, .product-card .btn-view {
  margin: 0 15px 15px;
  width: calc(100% - 30px);
}

/* Product Detail Section */
.product-detail {
  padding: 60px 0;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--light-text);
  font-size: 0.9rem;
}

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

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

.product-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.product-info h1 {
  margin-bottom: 10px;
}

.product-info .author {
  color: var(--light-text);
  margin-bottom: 10px;
}

.product-info .rating {
  color: #f39c12;
  margin-bottom: 15px;
}

.product-info .rating span {
  color: var(--light-text);
  margin-left: 5px;
}

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

.availability {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--success-color);
}

.availability i {
  margin-right: 5px;
}

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

.quantity {
  margin-bottom: 20px;
}

.quantity label {
  display: block;
  margin-bottom: 5px;
}

.quantity-control {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.quantity-btn {
  background-color: var(--light-bg);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1rem;
}

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

.quantity input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 8px 0;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-meta {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.product-meta p {
  margin-bottom: 8px;
  color: var(--light-text);
}

.product-tabs {
  margin-bottom: 60px;
}

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

.tab-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  color: var(--light-text);
}

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

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

.tab-content {
  display: none;
}

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

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

.details-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

.details-table td:first-child {
  font-weight: 600;
  width: 30%;
}

.review {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.review:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
}

.review-rating {
  color: #f39c12;
}

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

.related-products h2 {
  margin-bottom: 30px;
}

/* Cart Section */
.cart-section {
  padding: 60px 0;
}

.cart-section h1 {
  margin-bottom: 30px;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.cart-empty i {
  font-size: 4rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.cart-empty h2 {
  margin-bottom: 10px;
}

.cart-empty p {
  margin-bottom: 30px;
  color: var(--light-text);
}

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

.cart-items {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.cart-item {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cart-item-quantity button {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  cursor: pointer;
}

.cart-item-quantity input {
  width: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  padding: 5px 0;
}

.cart-item-remove {
  color: var(--error-color);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.9rem;
}

.cart-summary {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 20px;
  height: fit-content;
}

.cart-summary h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.2rem;
  padding: 15px 0;
  margin-top: 10px;
  border-bottom: none;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

/* Checkout Section */
.checkout-section {
  padding: 60px 0;
}

.checkout-section h1 {
  margin-bottom: 30px;
  text-align: center;
}

.checkout-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}

.checkout-form {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.checkout-form h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

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

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

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check input {
  margin-right: 10px;
}

.checkout-summary {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
  height: fit-content;
}

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

.checkout-items {
  margin-bottom: 20px;
}

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

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

.checkout-item-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

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

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

.checkout-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.checkout-item-price {
  color: var(--primary-color);
  font-weight: 600;
}

.checkout-item-quantity {
  color: var(--light-text);
  font-size: 0.9rem;
}

.summary-costs {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.checkout-links {
  margin-top: 20px;
  text-align: center;
}

/* Success Section */
.success-section {
  padding: 80px 0;
}

.success-content {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 50px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-content h1 {
  margin-bottom: 15px;
}

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

.success-actions {
  margin-top: 30px;
}

/* Contact Section */
.page-header {
  background-color: var(--light-bg);
  padding: 60px 0;
  text-align: center;
}

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

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
}

.info-content h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

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

.contact-social h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.contact-form {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

.map-section {
  padding: 40px 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

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

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.active {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  margin-top: 0;
}

.values-section {
  margin-bottom: 60px;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.value-item {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team-section {
  margin-bottom: 60px;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.team-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

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

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

.team-member h3 {
  margin: 20px 0 5px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 10px;
}

.team-member p:nth-child(3) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-member p:nth-child(4) {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.testimonial-rating {
  color: #f39c12;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--light-bg);
}

.cta-section .btn-secondary {
  color: white;
  border-color: white;
}

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

/* Footer */
footer {
  background-color: #263959;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

.footer-links ul li a, .footer-social a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover, .footer-social a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  min-width: 20px;
}

.footer-social .social-icons {
  margin-top: 15px;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(38, 57, 89, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 999;
  display: none;
}

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

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

.cookie-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-link {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 10px;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: white;
  text-decoration: underline;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-container, .about-content {
    grid-template-columns: 1fr;
  }
  
  .product-image {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cart-content, .checkout-container, .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .buttons {
    grid-template-columns: 1fr;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-cookie, .cookie-link {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .feature-grid, .values-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .success-content {
    padding: 30px 20px;
  }
}
