/* Modernized Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

/* General Styles */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #4a3f35; /* Dark brown for text */
  background-color: #f5f5f0; /* Light beige background */
  padding-bottom: 0; /* Remove bottom padding for new footer design */
}

a {
  text-decoration: none;
  color: #4a3f35; /* Dark brown for links */
  transition: color 0.3s ease;
}

a:hover {
  color: #a67c52; /* Warm brown for hover */
}

.path-marker {
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #ffce9c, #df790e, #673900);
  border-radius: 2px;
}

/* Button Styles */
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #a67c52, #8c6b47);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(90deg, #8c6b47, #6b4f35);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.primary-btn {
  background: linear-gradient(90deg, #df790e, #b05805);
}

.primary-btn:hover {
  background: linear-gradient(90deg, #b05805, #8a4304);
}

.secondary-btn {
  background: linear-gradient(90deg, #6b5b4b, #4a3f35);
}

.secondary-btn:hover {
  background: linear-gradient(90deg, #4a3f35, #362e29);
}

.view-all-btn {
  margin-top: 2rem;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Header Styles */
header {
  background: linear-gradient(90deg, #f8d3b9, #ffb16d);
  color: #4a3f35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
  }
}

header h1 {
  margin: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header img {
  height: 60px;
  width: auto;
  border-radius: 25px;
}

header .logo h1 a {
  color: #4a3f35;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

header nav ul li a {
  color: #63523e;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #df790e; /* Darker brown/orange for hover to increase contrast */
}

/* Hero Section */
.hero {
  background: url("assets/hero-bg.webp") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 550px;
  padding: 2.5rem;
  background-color: rgb(0 0 0 / 30%);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero > p {
  background-color: rgb(0 0 0 / 30%);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 8px 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

marquee {
  position: sticky;
  top: 0;
  z-index: 999;
  letter-spacing: 2px;
  background: linear-gradient(
    90deg,
    #442200,
    #6b4f35,
    #442200
  ); /* Gradient background */
  padding: 8px;
  color: #fff;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}

/* Special Offers Section */
.special-offers {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fff8f0;
}

.special-offers h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35;
}

.offers-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.offer {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #df790e;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 0 10px 0 10px;
}

.offer h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: #4a3f35;
}

.offer p {
  margin-bottom: 1.5rem;
  color: #6b5b4b;
}

/* About Us Section */
.about {
  padding: 6rem 2rem;
  background-color: #f5f5f0;
}

.about-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}

.about-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #4a3f35;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #6b5b4b;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.about-text ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.about-text ul li i {
  color: #df790e;
  margin-right: 1rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.categories {
  padding: 4rem 1rem;
  text-align: center;
}

.categories h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35; /* Dark brown */
}

.category-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.category img {
  max-width: 100%;
  border-radius: 10px;
  max-height: 250px;
}

.category h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #a67c52; /* Warm brown */
}

.category p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #6b5b4b; /* Medium brown */
}

/* Featured Products Section */
.featured-products {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fff;
}

.featured-products h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35;
}

.product-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #df790e;
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50px;
  z-index: 2;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4a3f35;
}

.rating {
  margin-bottom: 0.8rem;
}

.rating i {
  color: #ffc107;
  margin: 0 1px;
}

.rating span {
  color: #6b5b4b;
  margin-left: 5px;
  font-size: 0.9rem;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4a3f35;
  margin-bottom: 1.2rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-left: 0.5rem;
  font-weight: normal;
}

.product .btn {
  width: 100%;
  max-width: 200px;
}

.view-all-container {
  margin-top: 1rem;
}

/* Benefits Section */
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  background-color: #4a3f35;
  color: #fff;
  text-align: center;
}

.benefit {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.benefit i {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #df790e;
}

.benefit h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.benefit p {
  color: #d2a679;
}

/* Testimonials Section */
.testimonials {
  background-color: #f5f5f0;
  padding: 4rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35;
}

.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #ffc107;
  margin-right: 2px;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #4a3f35;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author p {
  margin: 0;
  font-style: normal;
  line-height: 1.4;
}

.testimonial-author small {
  color: #6b5b4b;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 1rem;
  background: linear-gradient(rgba(74, 63, 53, 0.9), rgba(74, 63, 53, 0.9)),
    url("assets/hero-bg.webp") no-repeat center center/cover;
  text-align: center;
  color: #fff;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background: linear-gradient(90deg, #df790e, #b05805);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(90deg, #b05805, #8a4304);
}

/* Contact Section */
.contact {
  padding: 5rem 1rem;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info,
.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-items: center;
}

.contact-item i {
  font-size: 1.8rem;
  color: #df790e;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: #4a3f35;
}

.contact-item p {
  color: #6b5b4b;
  margin: 0;
}

.social-media h3 {
  margin-bottom: 1rem;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4a3f35;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #df790e;
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: #f5f5f0;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #4a3f35;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #4a3f35;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  width: 90%;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(90deg, #a67c52, #8c6b47);
  width: auto;
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b5b4b;
  font-style: italic;
}

/* Form Response Messages */
#form-response {
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 500;
}

#form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.hidden {
  display: none;
}

/* Map Section */
.map-section {
  padding: 3rem 1rem;
  background-color: #f5f5f0;
  text-align: center;
}

.map-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a3f35;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
}

/* Footer Section */
footer {
  background: linear-gradient(90deg, #4a3f35, #6b5b4b);
  color: #fff;
  padding: 0;
}

.footer-content {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-logo p {
  color: #d2a679;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #df790e;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.email-wrap {
  overflow-wrap: anywhere;
}

.footer-column ul li a {
  color: #d2a679;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  color: #d2a679;
}

.footer-contact li i {
  margin-right: 1rem;
  color: #df790e;
}

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

.payment-methods h4 {
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.payment-icons i {
  font-size: 2rem;
  color: #d2a679;
  transition: color 0.2s ease;
}

.payment-icons i:hover {
  color: #fff;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

/* Product Details Section */
.product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-details img {
  max-height: 300px;
  max-width: 100%;
  border-radius: 1rem;
}

/* Target the second paragraph (description) in product-details */
.product-details p:nth-of-type(2) {
  margin: 1rem 2rem;
  margin-bottom: 4rem;
}

/* Cart Styles */
.cart-badge {
  position: relative;
  display: inline-block;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #df790e;
  color: white;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cart-count.has-items {
  opacity: 1;
}

/* Cart Page Styles */
.cart-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.cart-page h1 {
  margin-bottom: 2rem;
  color: #4a3f35;
}

.cart-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr auto;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  color: #4a3f35;
}

.cart-items {
  margin-top: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr auto;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 1rem;
}

.cart-item-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #4a3f35;
}

.cart-item-price {
  color: #6b5b4b;
  margin: 0 0 0.5rem 0;
}

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

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: #e0e0e0;
}

.cart-item-quantity span {
  margin: 0 0.8rem;
  font-weight: 500;
}

.cart-item-subtotal {
  font-weight: 600;
  color: #4a3f35;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #df790e;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.remove-item-btn:hover {
  color: #b05805;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.cart-total-container {
  font-size: 1.2rem;
  color: #4a3f35;
}

.cart-total-label {
  font-weight: bold;
  margin-right: 0.5rem;
}

#cart-total {
  font-weight: 600;
  color: #df790e;
}

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

.empty-cart-message {
  text-align: center;
  padding: 3rem 0;
  color: #6b5b4b;
  font-size: 1.2rem;
}

/* Product Page Add to Cart Button */
.add-to-cart-btn {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
}

.add-to-cart-btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .cart-item-image {
    justify-content: center;
  }

  .cart-item-details {
    text-align: center;
  }

  .cart-item-quantity {
    justify-content: center;
  }

  .cart-item-subtotal {
    text-align: center;
  }

  .remove-item-btn {
    margin: 0 auto;
    display: block;
  }

  .cart-footer {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cart-actions {
    flex-direction: column;
    width: 100%;
  }

  .cart-actions button {
    width: 100%;
  }
}
