:root {
  --primary-color: #e76f51;
  --secondary-color: #2a9d8f;
  --accent-color: #e9c46a;
  --dark-color: #264653;
  --light-color: #f8f9fa;
  --light-beige: #f5f0e1;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--light-beige);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

button, .btn {
  cursor: pointer;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo img {
  width: 50px;
  height: auto;
  margin-right: 0.5rem;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
}

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

.nav-links a:hover: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;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 80vh;
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 15px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  margin: 0.5rem;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #d65f41;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.9rem 1.9rem;
  margin: 0.5rem;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  background-color: white;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--light-beige);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-text {
  color: #666;
}

/* About Section */
.about-section {
  background-color: var(--light-color);
}

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

.about-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Stats Section */
.stats {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.stat-text {
  font-size: 1.1rem;
}

/* Products Section */
.products {
  background-color: var(--light-beige);
}

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

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.product-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

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

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

.btn-cart, .btn-buy {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
}

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

.btn-cart:hover {
  background-color: #238b7f;
  color: white;
}

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

.btn-buy:hover {
  background-color: #d65f41;
  color: white;
}

/* Single Product Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.product-detail-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

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

.product-detail-content {
  display: flex;
  flex-direction: column;
}

.product-detail-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.product-detail-description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.meta-item {
  display: flex;
  margin-bottom: 0.8rem;
}

.meta-label {
  font-weight: 700;
  width: 120px;
}

.product-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.quantity-label {
  margin-right: 1rem;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.quantity-btn {
  background: #f5f5f5;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

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

.product-detail .btn-cart, .product-detail .btn-buy {
  padding: 1rem 2rem;
}

.product-tabs {
  margin-top: 4rem;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
}

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

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

.tab-content {
  padding: 2rem 0;
}

.tab-panel {
  display: none;
}

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

/* Cart Page */
.cart-container {
  margin: 3rem auto;
  max-width: 1000px;
}

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.cart-empty i {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 1rem;
}

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

.cart-header {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr 80px;
  padding: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr 80px;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

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

.cart-item-info {
  padding-left: 1rem;
}

.cart-item-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

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

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

.cart-quantity-btn {
  background: #f5f5f5;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 3px;
}

.cart-quantity-input {
  width: 40px;
  height: 30px;
  text-align: center;
  margin: 0 0.5rem;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.cart-item-total {
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-item-remove:hover {
  color: #ff0000;
}

.cart-footer {
  background-color: #f9f9f9;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total {
  font-size: 1.2rem;
}

.cart-total-price {
  font-weight: 700;
  color: var(--primary-color);
}

/* Checkout Page */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
}

.checkout-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-secondary);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

.checkout-summary {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.summary-title {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.summary-item-name {
  max-width: 70%;
}

.summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

/* Success Page */
.success-container {
  max-width: 700px;
  margin: 5rem auto;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 3rem;
}

.success-icon {
  font-size: 5rem;
  color: #4caf50;
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem auto;
}

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

.contact-info-title {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 30px;
}

.contact-info-text {
  font-size: 1.1rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

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

.contact-form-title {
  margin-bottom: 2rem;
}

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

textarea.form-control {
  min-height: 150px;
}

/* About Us Page */
.about-container {
  margin: 3rem auto;
  max-width: 1000px;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.about-story {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 3rem;
  margin-bottom: 4rem;
}

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

.story-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-text p {
  margin-bottom: 1.5rem;
}

.team-section {
  padding: 3rem 0;
}

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

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

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member-content {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

.team-member-bio {
  color: #666;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

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

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 120px;
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-heading {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: #ccc;
  transition: var(--transition);
}

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

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

.footer-contact-icon {
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 24px;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 5px 0 0 5px;
}

.newsletter-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

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

.footer-bottom p {
  color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-accept:hover {
  background-color: #d65f41;
}

.btn-customize, .btn-decline {
  background-color: transparent;
  border: 1px solid #ddd;
}

.btn-customize:hover, .btn-decline:hover {
  background-color: #f5f5f5;
}

/* Quote of the Day */
.quote-of-day {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

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

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
  padding: 0 2rem;
}

.quote-text:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.3;
}

.quote-text:after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  right: 0;
  bottom: -40px;
  opacity: 0.3;
}

.quote-author {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Parallax Section */
.parallax-section {
  height: 400px;
  background-image: url('images/1.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 1rem;
  max-width: 800px;
}

.parallax-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.parallax-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .product-header {
    flex-direction: column;
    text-align: center;
  }
  
  .product-header-right {
    margin-top: 1rem;
  }
  
  .cart-header {
    display: none;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas: 
      "image info"
      "image price"
      "quantity quantity"
      "total total"
      "remove remove";
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .cart-item-image {
    grid-area: image;
  }
  
  .cart-item-info {
    grid-area: info;
  }
  
  .cart-item-price {
    grid-area: price;
  }
  
  .cart-item-quantity {
    grid-area: quantity;
    justify-content: flex-start;
  }
  
  .cart-item-total {
    grid-area: total;
  }
  
  .cart-item-remove {
    grid-area: remove;
    justify-self: flex-end;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
