.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.cart-plugin-container {
    position: relative;
    display: flex;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    border: 1px solid #ddd;
    /*padding: 1.5rem;*/
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.cart-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: bold;
    color: #555;
}

.form-input,
.form-select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #007bff;
}

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

.subscription-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.subscription-button.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.subscription-button:hover {
    background-color: #e7f3ff;
    color: #007bff;
}

.buy-now-button {
    margin-left: auto; /* Pushes the button to the far right */
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.button {
    padding: '10px 15px';
    background-color: '#007BFF';
    color: '#fff';
    border: 'none';
    border-radius: '5px';
    cursor: 'pointer';
}

.buy-now-button:hover {
    background-color: #0056b3;
}

.cart-actions {
    /*display: flex; */
    flex-direction: column; /* Stack the buttons and cart count vertically */
    align-items: center; /* Center align the content */
    gap: 10px; /* Add spacing between elements */
}

.cart-buttons {
    display: flex;
    gap: 15px; /* Add spacing between the buttons */
    justify-content: center; /* Center align the buttons */
}

.cart-count {
    margin-top: 10px; /* Add spacing above the cart count */
    font-size: 1rem; /* Set font size */
    font-weight: bold; /* Make the text bold */
    color: #333; /* Set text color */
    text-align: center; /* Center align the text */
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.form-input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
}

.apply-button {
    background-color: #28a745; /* Green background */
    color: white; /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #218838; /* Darker green on hover */
}

.skip-button {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.skip-button:hover {
    background-color: #e0e0e0;
    color: #007bff;
    border-color: #007bff;
}

.go-back-button {
    background-color: #dc3545; /* Red background */
    color: white; /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.go-back-button:hover {
    background-color: #c82333; /* Darker red on hover */
}

.footer{
    padding: 20px; 
    text-align: center;
}

.global-term-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ff0000; /* Red color to indicate restriction */
    font-weight: bold;
}

.clear-cart-container {
    position: absolute; /* Position the container absolutely within the parent */
    top: 10px; /* Adjust the top position */
    right: 10px; /* Adjust the left position */
    text-align: center; /* Center the text below the image */
    z-index: 10; /* Ensure it appears above other elements */
    
}

.clear-cart-image {
    cursor: pointer;
    width: 20px; /* Adjust the size of the image */
    height: 20px;
    display: block;
    margin: 0 auto; /* Center the image */
}

.clear-cart-text {
    margin-top: 2px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

.prerequisites-note {
    margin-top: 10px;
    font-size: 0.7rem;
    color: #ff0000; /* Red color to indicate importance */
    background-color: #fff4f4; /* Light red background */
    padding: 10px;
    border: 1px solid #ffcccc;
    border-radius: 5px;
}

.product-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* Add to your CartPlugin.css */
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 2;
}
.button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-primary {
  background-color: #007bff;
  color: white;
}
.button-primary:hover {
  background-color: #0056b3;
}.learn-more-btn {
    width: 100%;
    background-color: #ff9900; /* Orange background */
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e68900; /* Darker shade on hover */
}

/* Arrow Icon */
.learn-more-btn::after {
    content: "➜"; /* Unicode right arrow */
    font-size: 1.2rem;
    margin-left: 10px;
}

.pink{
  background-color: pink;
  color: black;
}


.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: right;
    padding: 15px 25px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-logo{
    height: 50px; /* Adjust the height as needed */
    object-fit: contain;
}

.footer-container {
    background-color: #fff; /* Same as the header background */
    color: #000; /* Text color */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05); /* Optional shadow for separation */
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333; 
    font-weight: bold;
}

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

.footer-section ul li {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-section ul li a {
    color: #007BFF; /* Link color */
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}
/* LandingPage.css */
.landing-page {
    padding: 0 20px 20px 20px;
    text-align: center;
}

.landing-page .title {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

.landing-page .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensures 4 products per row */
    gap: 20px;
    justify-content: center;
}

.landing-page .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landing-page .image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.landing-page .price {
    font-size: 1.2rem;
    color: #007BFF;
    font-weight: bold;
}
.banner {
    display: flex;
    justify-content: space-between; /* Space between content and button */
    align-items: center; /* Vertically center the content and button */
    background-color: #005f87;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.banner-image {
    width: 250px; /* Adjust the size of the image */
    height: auto;
    margin-right: 15px;
}

.banner-content {
    flex: 1;
    text-align: left; /* Align text to the left */
}

.banner-title {
    color: #faa50a;
    font-weight: bold;
    font-style: italic;
    margin: 0;
    font-size: 1.5rem;
}

.banner-subtitle {
    letter-spacing: 0.2px;
    color: #ffffff;
    margin: 10px 0;
    font-size: 1.2rem;
}

.banner-text {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.banner-button {
    height: 40px;
    border: solid 2px #ffffff;
    min-width: 210px !important;
    background-color: #005f87;
    border-radius: 0;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.banner-button:hover {
    background-color: #ffffff;
    color: #005f87;
}

@media (max-width: 768px) {
  .landing-page .grid {
     grid-template-columns: 1fr !important;
  }
  
  .banner {
      flex-direction: column;
}
}
