 @font-face {
      font-family: 'Tequlia';
      src: url('assets/fonts/Tequlia.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* Global Premium Styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Playfair Display', serif;
      line-height: 1.6;
      color: #1a1a1a;
      background: #ffffff;
      overflow-x: hidden;
    }

    /* Override existing background */
    .cart-page-container {
      padding-top: 140px;
      min-height: calc(100vh - 300px); /* Increased space for footer */
      max-width: 1400px;
      margin: 0 auto;
      padding: 140px 2rem 2rem; /* Reduced bottom padding to allow footer space */
      background: #ffffff;
      position: relative;
    }

    .cart-page-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f8f8 100%);
      z-index: -1;
    }

    /* Premium Header */
    .cart-page-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .cart-page-header::after {
      content: '';
      position: absolute;
      bottom: -2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #000, transparent);
    }

    .cart-page-header h1 {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 3.8rem);
      font-weight: bold;
      color: #000;
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .cart-page-header p {
      font-size: 1.2rem;
      color: #666;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    /* Premium Cart Grid */
    .cart-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 4rem;
      align-items: start;
    }

    .cart-main-column {
      min-height: 400px;
      position: relative;
    }

    /* Premium Cart Items */
    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .cart-item {
      display: flex;
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 2px solid #f0f0f0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .cart-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #000, #333, #000);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .cart-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      border-color: #e0e0e0;
    }

    .cart-item:hover::before {
      opacity: 1;
    }

    .cart-item-image {
      width: 240px;
      min-width: 240px;
      background: #fafafa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      border-right: 1px solid #f0f0f0;
    }

    .cart-item-image img {
      max-width: 100%;
      max-height: 200px;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
      transition: transform 0.3s ease;
    }

    .cart-item:hover .cart-item-image img {
      transform: scale(1.05);
    }

    .cart-item-details {
      flex: 1;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cart-item-name {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: bold;
      color: #000;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }

    .cart-item-price {
      font-size: 1.5rem;
      color: #000;
      margin-bottom: 1.5rem;
      font-weight: 700;
      font-family: 'Montserrat', 'Playfair Display', serif;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-top: auto;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #f8f8f8;
      border-radius: 12px;
      padding: 0.5rem;
      border: 1px solid #e0e0e0;
    }

    .cart-qty-button {
      width: 40px;
      height: 40px;
      background: #ffffff;
      border: 1px solid #ddd;
      color: #333;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .cart-qty-button:hover {
      background: #000;
      color: #ffffff;
      border-color: #000;
      transform: scale(1.05);
    }

    .cart-qty-button:active {
      transform: scale(0.95);
    }

    .cart-qty-display {
      min-width: 50px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: bold;
      color: #000;
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
    }

    .cart-item-remove {
      background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      color: #dc3545;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 10px 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cart-item-remove:hover {
      color: #ffffff;
      background: #dc3545;
      border-color: #dc3545;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }

    .cart-item-subtotal {
      width: 160px;
      min-width: 160px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      background: #fafafa;
      border-left: 1px solid #f0f0f0;
      position: relative;
    }

    .cart-item-subtotal::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 0;
      width: 2px;
      height: 60%;
      background: linear-gradient(to bottom, transparent, #000, transparent);
    }

    .cart-item-subtotal-label {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0.5rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cart-item-subtotal-amount {
      font-size: 1.6rem;
      font-weight: 800;
      color: #000;
      font-family: 'Montserrat', 'Playfair Display', serif;
      letter-spacing: 0.5px;
    }

    /* Premium Cart Summary */
    .cart-summary {
      background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
      padding: 2.5rem;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      border: 2px solid #f0f0f0;
      position: sticky;
      top: 160px;
    }

    .cart-summary h3 {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: bold;
      color: #000;
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
    }

    .cart-summary h3::after {
      content: '';
      position: absolute;
      bottom: -1rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: #000;
    }

    .cart-summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .cart-summary-row:last-child {
      border-bottom: none;
      padding-top: 1.5rem;
      margin-top: 1rem;
      border-top: 2px solid #000;
    }

    .cart-summary-label {
      font-size: 1.1rem;
      color: #333;
      font-weight: 500;
    }

    .cart-summary-value {
      font-size: 1.3rem;
      font-weight: 700;
      color: #000;
      font-family: 'Montserrat', 'Playfair Display', serif;
      letter-spacing: 0.3px;
    }

    .cart-total-value {
      font-size: 1.8rem;
      font-weight: 800;
      color: #000;
      font-family: 'Montserrat', 'Playfair Display', serif;
      letter-spacing: 0.5px;
    }

    /* Promo Code Section */
    .cart-promo-section {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #f0f0f0;
    }

    .cart-promo-section .section-header {
      margin-bottom: 1rem;
    }

    .cart-promo-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .cart-promo-section h2 i {
      color: #666;
      font-size: 1rem;
    }

    .cart-promo-input {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .cart-promo-input input {
      flex: 1;
      padding: 0.8rem 1rem;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      font-family: 'Playfair Display', serif;
      background: #ffffff;
      color: #333;
      transition: border-color 0.3s ease;
    }

    .cart-promo-input input:focus {
      outline: none;
      border-color: #000;
    }

    .cart-promo-input input::placeholder {
      color: #999;
    }

    .cart-promo-input button {
      padding: 0.8rem 1.5rem;
      background: linear-gradient(135deg, #000 0%, #333 100%);
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Playfair Display', serif;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cart-promo-input button:hover {
      background: linear-gradient(135deg, #333 0%, #000 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .cart-promo-message {
      padding: 0.5rem 0;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .cart-promo-message.success {
      color: #28a745;
    }

    .cart-promo-message.error {
      color: #dc3545;
    }

    /* Sidebar Checkout Button */
    .sidebar-checkout-btn {
      width: 100%;
      padding: 1rem 1.5rem;
      background: linear-gradient(135deg, #000 0%, #333 100%);
      color: #ffffff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: bold;
      font-family: 'Playfair Display', serif;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .sidebar-checkout-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .sidebar-checkout-btn:hover::before {
      left: 100%;
    }

    .sidebar-checkout-btn:hover {
      background: linear-gradient(135deg, #333 0%, #000 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* Secure Checkout Note */
    .secure-checkout-note {
      text-align: center;
      margin-top: 1rem;
      padding: 0.5rem;
      font-size: 0.9rem;
      color: #666;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .secure-checkout-note i {
      color: #28a745;
      font-size: 1rem;
    }

    /* Payment Methods */
    .payment-methods {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid #f0f0f0;
    }

    .payment-methods i {
      font-size: 2rem;
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .payment-methods i:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    .payment-methods .fa-cc-visa {
      color: #1A1F71;
    }

    .payment-methods .fa-cc-mastercard {
      color: #EB001B;
    }

    .payment-methods .fa-cc-amex {
      color: #006FCF;
    }

    .payment-methods .fa-cc-discover {
      color: #FF6000;
    }

    .payment-methods .fa-cc-diners-club {
      color: #0079BE;
    }

    .payment-methods .fa-cc-jcb {
      color: #0E4C96;
    }

    /* Continue Shopping Link */
    .continue-shopping-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding: 1rem;
      text-decoration: none;
      color: #666;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border-radius: 8px;
    }

    .continue-shopping-link:hover {
      color: #000;
      background: rgba(0, 0, 0, 0.05);
    }

    .continue-shopping-link i {
      font-size: 0.9rem;
    }

    /* Premium Action Buttons */
    .cart-actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }

    .cart-action-btn {
      padding: 1.2rem 2rem;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: bold;
      font-family: 'Playfair Display', serif;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
    }

    .cart-action-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .cart-action-btn:hover::before {
      left: 100%;
    }

    .btn-checkout {
      background: linear-gradient(135deg, #000 0%, #333 100%);
      color: #ffffff;
      border: 2px solid #000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-checkout:hover {
      background: linear-gradient(135deg, #333 0%, #000 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .btn-continue-shopping {
      background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
      color: #000;
      border: 2px solid #e0e0e0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-continue-shopping:hover {
      background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      border-color: #000;
    }

    .btn-clear-cart {
      background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
      color: #dc3545;
      border: 2px solid #dc3545;
      box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
      margin-top: 2rem;
    }

    .btn-clear-cart:hover {
      background: #dc3545;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    }

    /* Payment Methods Info */
    .payment-methods-info {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #f0f0f0;
    }

    .payment-methods-info p {
      text-align: center;
      margin: 1rem 0 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .payment-methods-info div {
      display: flex;
      justify-content: center;
      gap: 1rem;
      opacity: 0.8;
    }

    .payment-methods-info i {
      font-size: 1.8rem;
      transition: transform 0.3s ease;
    }

    .payment-methods-info i:hover {
      transform: scale(1.1);
    }

    /* Premium Empty Cart */
    .cart-empty {
      text-align: center;
      padding: 5rem 2rem;
      background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      border: 2px solid #f0f0f0;
      margin: 2rem 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% - 4rem);
      max-width: 800px;
    }

    .cart-empty-icon {
      font-size: 4rem;
      color: #333;
      margin-bottom: 2rem;
      opacity: 0.8;
    }

    .cart-empty h2 {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: bold;
      color: #000;
      margin-bottom: 1rem;
    }

    .cart-empty p {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cart-empty .cart-action-btn {
      max-width: 300px;
      margin: 0 auto;
      display: inline-flex;
    }

    /* Loading Spinner */
    .loading-spinner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #f0f0f0;
      border-left: 4px solid #000;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 1rem;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-spinner p {
      font-size: 1.1rem;
      color: #666;
    }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .cart-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .cart-page-container {
          padding: 120px 1rem 2rem;
          min-height: calc(100vh - 200px); /* Ensure proper footer spacing */
        }

        .cart-page-header h1 {
          font-size: 2.5rem;
        }

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

        .cart-item-image {
          width: 100%;
          min-width: auto;
          height: 240px;
          border-right: none;
          border-bottom: 1px solid #f0f0f0;
        }

        .cart-item-subtotal {
          width: 100%;
          min-width: auto;
          border-left: none;
          border-top: 1px solid #f0f0f0;
          align-items: center;
        }

        .cart-item-subtotal::before {
          display: none;
        }

        .cart-main-column {
          min-height: 1px;
          position: relative;
        }

        .cart-item-controls {
          flex-direction: column;
          gap: 1rem;
          align-items: stretch;
        }

        .cart-summary {
          position: static;
          margin-bottom: 2rem; /* Add space before footer */
        }

        .cart-actions {
          flex-direction: column;
          margin-bottom: 2rem; /* Add space before footer */
        }

        .cart-empty {
          padding: 3rem 1rem;
          margin: 2rem auto;
          width: calc(100% - 2rem);
          position: relative;
          transform: none;
          top: auto;
          left: auto;
          max-width: 600px;
        }

        .cart-empty h2 {
          font-size: 2rem;
        }

        .cart-empty p {
          font-size: 1.1rem;
        }
      }    /* Smooth Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cart-item {
      animation: fadeInUp 0.6s ease-out;
    }

    .cart-item:nth-child(1) { animation-delay: 0.1s; }
    .cart-item:nth-child(2) { animation-delay: 0.2s; }
    .cart-item:nth-child(3) { animation-delay: 0.3s; }
    .cart-item:nth-child(4) { animation-delay: 0.4s; }

    /* Free Delivery Notification */
    .free-delivery-notification {
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
      color: white;
      padding: 1rem 1.2rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      position: relative;
      overflow: hidden;
      animation: slideInDown 0.4s ease-out;
      border-left: 4px solid #20c997;
    }

    .free-delivery-notification.success {
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
      border-left-color: #20c997;
    }

    .free-delivery-notification::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    .free-delivery-notification .notification-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
      margin-top: 0.1rem;
    }

    .free-delivery-notification .notification-content {
      flex: 1;
    }

    .free-delivery-notification .notification-content h3 {
      font-family: 'Montserrat', 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: white;
      line-height: 1.2;
    }

    .free-delivery-notification .notification-content p {
      font-size: 0.85rem;
      margin-bottom: 0.7rem;
      opacity: 0.95;
      line-height: 1.3;
    }

    .free-delivery-notification .notification-cta {
      background: rgba(255, 255, 255, 0.9);
      color: #28a745;
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .free-delivery-notification .notification-cta:hover {
      background: white;
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .free-delivery-notification .close-notification {
      position: absolute;
      top: 0.4rem;
      right: 0.4rem;
      background: none;
      border: none;
      color: white;
      font-size: 1.1rem;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s ease;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .free-delivery-notification .close-notification:hover {
      opacity: 1;
      background: rgba(255, 255, 255, 0.2);
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    /* Mobile responsiveness for notification */
    @media (max-width: 768px) {
      .free-delivery-notification {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
      }

      .free-delivery-notification .notification-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
        margin: 0 auto 0.3rem;
      }

      .free-delivery-notification .notification-content h3 {
        font-size: 0.95rem;
      }

      .free-delivery-notification .notification-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
      }

      .free-delivery-notification .notification-cta {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
        align-self: center;
      }

      .free-delivery-notification .close-notification {
        top: 0.3rem;
        right: 0.3rem;
        width: 20px;
        height: 20px;
        font-size: 1rem;
      }
    }