/* Minimal carousel layout so slides sit side-by-side */
    * { box-sizing: border-box; }
    html { font-family: "Georgia", "Times New Roman", Times, serif; scroll-behavior: smooth; }
    body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background: #f7f1e4; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; }
    button { font: inherit; }

    .carousel { position: relative; width: min(100%, 760px); margin: 2rem auto; overflow: hidden; box-shadow: 0 10px 24px rgba(42, 31, 20, 0.12); }
    .carousel-items { display: flex; transition: transform .5s ease; }
    .carousel-item { flex: 0 0 100%; box-sizing: border-box; }
    .carousel-item img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #efe7dc; }
    .prev, .next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(0,0,0,0.4); color: #fff; border: none; padding: .5rem 1rem; cursor: pointer; }
    .prev { left: 8px; }
    .next { right: 8px; }
    .carousel-actions { display: flex; justify-content: center; margin: 1.5rem auto 2.5rem; }
    .cta-button { display: inline-block; border: none; border-radius: 999px; padding: .8rem 1.4rem; background: linear-gradient(180deg, #fad75f 0%, #f66d1c 100%); color: #231b17; font-weight: 700; cursor: pointer; box-shadow: 0 4px 12px rgba(117, 63, 18, 0.2); }
    .cta-button:hover { transform: translateY(-1px); }

    .site-footer { padding: 1rem 1.5rem; background: #111; color: #fff; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
    .footer-contact,
    .footer-copy { margin: 0; font-size: .95rem; }
    .footer-copy { opacity: .8; }
    .store-links { display: flex; justify-content: center; gap: 1rem; list-style: none; margin: 0 auto; padding: 0; }
    .store-links li { display: inline-flex; }
    .store-links a img { display: block; width: 40px; height: auto; }

    /* basic responsive sizing */
    @media (max-width:600px){ 
      .carousel{ width:100%; } 
      .prev,.next{ padding:.3rem .6rem; } 
      .footer-inner{ flex-direction:column; align-items:center; text-align:center; } 

      .about-inspiration {
        grid-template-columns: 1fr;
      }

      .nav-links {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: .5rem 1rem;
        gap: .8rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(88, 48, 14, 0.65) rgba(255,255,255,0.2);
      }

      .nav-links::-webkit-scrollbar {
        height: 8px;
      }

      .nav-links::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.12);
      }

      .nav-links::-webkit-scrollbar-thumb {
        background: rgba(88, 48, 14, 0.65);
        border-radius: 999px;
      }

      .nav-links li {
        margin: 0;
        flex: 0 0 auto;
      }
    }

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr;
        justify-items: center;
      }

      .product-card {
        width: min(100%, 280px);
      }
    }

/* Nav-links section */
    .nav-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(180deg, #fad75f 0%, #f66d1c 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
      width: 100%;
      overflow: auto;
      margin: 0;
      padding: 0 1rem;
      gap: 1rem;
    }

    .nav-links li {
      margin: 0 20px;
      display: inline-block;
    }

    .nav-links img {
      margin-right: 20px;
      max-width: 100%;
      width: clamp(100px, 14vw, 180px);
      height: auto;
    }

    .nav-links .links-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .nav-links a {
      font-size: 1.4em;
      text-decoration: none;
      color: rgba(0, 0, 0, 0.8);
      background: transparent;
      border: none;
      padding: 0;
      border-radius: 0;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    .nav-links a:hover {
      color: rgba(0, 0, 0, 1);
      background: transparent;
      border: none;
      opacity: 1;
    }

    .nav-links ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

/* Index page hero section */
    .index-hero {
      text-align: center;
      padding: 2rem 1rem 0.5rem;
    }

    .index-hero .eyebrow {
      display: inline-block;
      margin: 0 0 .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .75rem;
      font-weight: 700;
      color: #b15d1f;
    }

    .index-hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: #2b1d13;
    }

    .index-hero .cta-button {
      margin-top: 1rem;
    }

    .index-hero p {
      max-width: 600px;
      margin: 1.5rem auto 0;
      font-size: 1.1rem;
      color: #5a4338;
      line-height: 1.8;
      letter-spacing: 0.3px;
    }

/* About and contact pages */
    .content-page {
      max-width: 980px;
      margin: 0 auto;
      padding: 2rem 1rem 4rem;
    }

    .content-hero {
      text-align: center;
      margin-bottom: 2rem;
    }

    .content-hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: #2b1d13;
    }

    .content-panel {
      background: #f7f1e4;
      border: 1px solid rgba(86, 62, 42, 0.08);
      border-radius: 15px;
      box-shadow: 0 2px 5px rgba(42, 31, 20, 0.12);
      padding: clamp(1.25rem, 4vw, 2.5rem);
    }

    .about-copy {
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
    }

    .content-panel h2 {
      margin-top: 0;
      color: #34261c;
    }

    .content-panel p {
      color: #5a4338;
    }

    .about-inspiration {
      display: grid;
      gap: .75rem;
      margin-top: 2rem;
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
    }

    .about-carousel {
      width: min(100%, 760px);
      margin: 2rem auto 0;
    }

    .about-carousel .carousel-items {
      min-height: 300px;
    }

    .about-carousel .carousel-item img {
      width: 100%;
      min-height: 300px;
      max-height: 460px;
    }

    .contact-details {
      font-size: 1.1rem;
      text-align: center;
    }

    .contact-details a {
      color: #b15d1f;
      font-weight: 700;
    }

    .faq-section {
      margin-top: 3rem;
    }

    .faq-section h2 {
      margin-bottom: 1rem;
      color: #34261c;
    }

    .faq-item {
      border-top: 1px solid rgba(86, 62, 42, 0.2);
      padding: 1rem 0;
    }

    .faq-item:last-of-type {
      border-bottom: 1px solid rgba(86, 62, 42, 0.2);
    }

    .faq-toggle {
      display: block;
      width: 100%;
      border: 0;
      background: transparent;
      position: relative;
      cursor: pointer;
      color: #34261c;
      font: inherit;
      font-weight: 700;
      text-align: left;
      padding-left: 1.25rem;
    }

    .faq-toggle::after {
      content: '';
      position: absolute;
      left: 0.25rem;
      top: 50%;
      width: 0.45rem;
      height: 0.45rem;
      border-right: 2px solid #34261c;
      border-bottom: 2px solid #34261c;
      transform: translateY(-50%) rotate(-45deg);
      transition: transform 180ms ease;
    }

    .faq-item.is-open .faq-toggle::after {
      transform: translateY(-50%) rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-0.35rem);
      transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
    }

    .faq-item.is-open .faq-answer {
      opacity: 1;
      transform: translateY(0);
    }

    .faq-item p {
      color: #5a4338;
      line-height: 1.7;
      margin: 0.75rem 0 0;
    }

    @media (prefers-reduced-motion: reduce) {
      .faq-toggle::after,
      .faq-item p,
      .faq-answer {
        transition: none;
      }
    }

    .faq-note {
      color: #6d625a;
      font-size: 0.9rem;
      margin-top: 1.25rem;
    }

/* Products page section */
    .products-page {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      padding: 2rem 1rem 4rem;
    }

    .products-hero {
      text-align: center;
      margin-bottom: 2rem;
    }

    .eyebrow {
      display: inline-block;
      margin: 0 0 .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .75rem;
      font-weight: 700;
      color: #b15d1f;
    }

    .products-hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: #2b1d13;
    }

    .products-hero p:last-child {
      max-width: 700px;
      margin: 1rem auto 0;
      font-size: 1.1rem;
      color: #5b4337;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(42, 31, 20, 0.12);
      transition: transform .2s ease, box-shadow .2s ease;
      border: 1px solid rgba(86, 62, 42, 0.08);
      height: 100%;
      width: auto;
    }
    
    .product-card p {
      white-space: pre-line;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(42, 31, 20, 0.14);
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      background: #efe7dc;
      cursor: pointer;
      transition: transform .2s ease, opacity .2s ease;
    }

    .product-card img:hover {
      transform: scale(1.03);
      opacity: 0.9;
    }

/* ===== CART NOTIFICATION ===== */
    .cart-notification {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(120px);
      background: linear-gradient(180deg, #4caf50 0%, #388e3c 100%);
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
      font-weight: 600;
      transition: transform .3s ease;
      z-index: 50;
      pointer-events: none;
    }

    .cart-notification.error {
      background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
      box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    }

    .cart-notification.show {
      transform: translateX(-50%) translateY(0);
    }

    @media (max-width: 600px) {
      .cart-notification {
        bottom: 1.5rem;
        padding: .75rem 1.5rem;
        font-size: .95rem;
      }
    }

    .product-card-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 1rem 1rem 1.25rem;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .5rem;
      margin-bottom: .5rem;
    }

    .product-tag {
      display: inline-block;
      width: auto;
      align-self: flex-start;
      margin: 0;
      padding: .35rem .7rem;
      border-radius: 999px;
      background: #f4e5c4;
      color: #7e4f1f;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .product-price {
      font-weight: 700;
      color: #7f4b24;
    }

    .product-card h2 {
      margin: .45rem 0 .5rem;
      font-size: 1.4rem;
      color: #251a13;
    }

    .product-card p {
      margin: 0;
      color: #5a4338;
      flex: 1;
    }

    .product-card button {
      margin-top: 1rem;
      width: 100%;
      border: none;
      border-radius: 12px;
      padding: .8rem 1rem;
      background: linear-gradient(180deg, #f6a544 0%, #d66e17 100%);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s ease;
      align-self: stretch;
    }

    .product-card button:hover {
      opacity: .95;
    }

    .product-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .2s ease, visibility .2s ease;
      z-index: 20;
      overflow-y: auto;
    }

    .product-modal.show {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 11, 8, 0.72);
      backdrop-filter: blur(3px);
    }

    .modal-panel {
      position: relative;
      width: min(100%, 980px);
      max-height: min(90vh, 900px);
      background: #fff;
      border-radius: 22px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
      overflow-y: auto;
    }

    .modal-gallery {
      background: #f3ebdf;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    #modalMainImage {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 16px;
      background: #e7ddd0;
    }

    .modal-thumbnails {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .6rem;
    }

    .thumbnail {
      border: 2px solid transparent;
      background: transparent;
      padding: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color .2s ease, transform .2s ease;
    }

    .thumbnail img {
      width: 100%;
      height: 90px;
      object-fit: cover;
    }

    .thumbnail.active {
      border-color: #d9822f;
    }

    .modal-copy {
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .modal-copy h2 {
      margin: .3rem 0 .75rem;
      font-size: clamp(2rem, 3vw, 2.7rem);
      color: #2c1d13;
    }

    .modal-copy p {
      margin: 0 0 1rem;
      color: #544136;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: grid;
      gap: .65rem;
    }

    .feature-list li {
      position: relative;
      padding-left: 1.25rem;
      color: #34261c;
    }

    .feature-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #d4761f;
      font-size: 1.2rem;
      line-height: 1;
    }

    .modal-close {
      position: absolute;
      right: 1rem;
      top: 1rem;
      z-index: 2;
      border: none;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: linear-gradient(180deg, #fad75f 0%, #f66d1c 100%);
      color: #231b17;
      font-size: 1.8rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(117, 63, 18, 0.25);
      transition: transform .2s ease;
    }

    .modal-close:hover {
      transform: scale(1.08);
    }

    .product-gallery-panel {
      display: block;
      max-height: min(90vh, 900px);
    }

    .product-gallery-content {
      padding: 2.5rem;
    }

    .product-gallery-content h2 {
      margin: 0 0 .3rem;
      color: #34261c;
    }

    .product-gallery-content h2 + p {
      margin: 0 0 1.5rem;
    }

    .product-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1rem;
      max-height: 65vh;
      overflow-y: auto;
      padding-right: .25rem;
    }

    .gallery-product-card {
      overflow: hidden;
      border: 1px solid #eadbc9;
      border-radius: 12px;
      background: #fffaf3;
    }

    .gallery-product-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: #e7ddd0;
    }

    .gallery-product-card div { padding: .75rem; }
    .gallery-product-card h3 { margin: 0; color: #34261c; font-size: 1rem; line-height: 1.3; }
    .gallery-product-card p { margin: .35rem 0 0; color: #d4761f; font-weight: 700; }

    @media (max-width: 760px) {
      .modal-panel {
        grid-template-columns: 1fr;
      }

      #modalMainImage {
        height: 300px;
      }
    }

    @media (max-width: 540px) {
      .nav-links {
        justify-content: flex-start;
      }

      .nav-links li {
        margin: 0 12px 0 0;
      }

      .nav-links a {
        font-size: 1.05em;
      }

      .product-card img {
        height: 200px;
      }

      .modal-copy {
        padding: 1.25rem 1rem 1.5rem;
      }

      .product-gallery-content { padding: 2rem 1rem 1.25rem; }
      .product-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
    }

/* ===== FLOATING CART BUTTON ===== */
    .floating-cart-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(180deg, #fad75f 0%, #f66d1c 100%);
      border: none;
      box-shadow: 0 4px 16px rgba(117, 63, 18, 0.35);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #231b17;
      transition: transform .2s ease, box-shadow .2s ease;
      z-index: 19;
    }

    .floating-cart-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(117, 63, 18, 0.45);
    }

    .floating-cart-btn:active {
      transform: scale(0.98);
    }

    .floating-cart-btn svg {
      width: 28px;
      height: 28px;
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #d63031;
      color: #fff;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      font-weight: 700;
      border: 2px solid #fff;
    }

/* ===== CHECKOUT MODAL ===== */
    .checkout-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .2s ease, visibility .2s ease;
      z-index: 30;
      overflow-y: auto;
    }

    .checkout-modal.show {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .checkout-panel {
      width: min(100%, 600px) !important;
      max-height: min(90vh, 700px) !important;
      grid-template-columns: 1fr !important;
      padding: 2rem 1.5rem !important;
    }

    .checkout-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .checkout-content h2 {
      margin: 0;
      font-size: 2rem;
      color: #2c1d13;
    }

    .checkout-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-height: 300px;
      overflow-y: auto;
    }

    .empty-cart {
      text-align: center;
      color: #5a4338;
      padding: 2rem 0;
    }

    .checkout-item {
      display: grid;
      grid-template-columns: 1fr auto auto auto;
      gap: 1rem;
      align-items: center;
      padding: 1rem;
      background: #f9f6f1;
      border-radius: 12px;
      border: 1px solid rgba(86, 62, 42, 0.1);
    }

    .item-details h3 {
      margin: 0 0 .25rem;
      font-size: 1.1rem;
      color: #2c1d13;
    }

    .item-price {
      margin: 0;
      font-size: .9rem;
      color: #7f4b24;
      font-weight: 600;
    }

    .item-quantity {
      display: flex;
      align-items: center;
      gap: .5rem;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: .25rem;
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border: none;
      background: transparent;
      color: #7f4b24;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease;
    }

    .qty-btn:hover {
      background: #f0e6d6;
    }

    .qty-input {
      width: 40px;
      height: 28px;
      border: none;
      text-align: center;
      font-weight: 600;
      color: #2c1d13;
    }

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .qty-input[type=number] {
      -moz-appearance: textfield;
      appearance: textfield;
    }

    .item-total {
      font-weight: 700;
      color: #2c1d13;
      min-width: 60px;
      text-align: right;
    }

    .btn-remove {
      padding: .5rem 1rem;
      border: none;
      background: #f0e6d6;
      color: #d63031;
      border-radius: 6px;
      cursor: pointer;
      font-size: .85rem;
      font-weight: 600;
      transition: background .2s ease;
    }

    .btn-remove:hover {
      background: #e7d5c3;
    }

    .checkout-summary {
      border-top: 2px solid #e7d5c3;
      border-bottom: 2px solid #e7d5c3;
      padding: 1rem 0;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 1.25rem;
      font-weight: 700;
      color: #2c1d13;
    }

    .total-price {
      color: #d66e17;
    }

    .checkout-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .form-group label {
      font-weight: 600;
      color: #2c1d13;
    }

    .form-group input {
      padding: .75rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      font-family: inherit;
    }

    .form-group input:focus {
      outline: none;
      border-color: #d66e17;
      box-shadow: 0 0 0 3px rgba(214, 110, 23, 0.1);
    }

    .checkout-submit-btn {
      padding: 1rem;
      background: linear-gradient(180deg, #f6a544 0%, #d66e17 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s ease;
    }

    .checkout-submit-btn:hover {
      opacity: .95;
    }

    .checkout-submit-btn:active {
      transform: scale(0.98);
    }

    .checkout-message {
      padding: 1rem;
      background: #e8f5e9;
      border-left: 4px solid #4caf50;
      border-radius: 4px;
      color: #2e7d32;
      font-size: .95rem;
      margin: 0;
      min-height: 20px;
    }

    .checkout-message.error {
      background: #fdecea;
      border-left-color: #d32f2f;
      color: #b71c1c;
    }

    .checkout-message:empty {
      display: none;
    }

    .btn-add-cart {
      width: 100%;
      border: none;
      border-radius: 12px;
      padding: .8rem 1rem;
      background: linear-gradient(180deg, #f6a544 0%, #d66e17 100%);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s ease;
      font-size: .95rem;
    }

    .btn-add-cart:hover {
      opacity: .95;
    }

    @media (max-width: 600px) {
      .floating-cart-btn {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        right: 1.5rem;
      }

      .floating-cart-btn svg {
        width: 24px;
        height: 24px;
      }

      .cart-badge {
        width: 24px;
        height: 24px;
        font-size: .65rem;
      }

      .checkout-panel {
        padding: 1.5rem 1rem !important;
      }

      .checkout-item {
        grid-template-columns: 1fr;
        gap: .75rem;
      }

      .item-total {
        text-align: left;
      }

      .btn-remove {
        width: 100%;
      }

      .product-card-buttons {
        flex-direction: column;
      }

      .btn-view-details,
      .btn-add-cart {
        width: 100%;
      }
    }
