
:root {
    --primary-bluemid: #0C7489;
    --primary-bluedark: #13505B;
    --primary-bluelight: #119DA4;
    --primary-grey: #E5E5E5;
 
  }
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family:"Righteous";
    padding: 20px;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .container {
    position: relative;
    cursor: pointer;
    font-size: 10px;
    width: 2em;
    height: 2em;
    user-select: none;
    border-radius: 25px;
    border: 2px solid var(--primary-bluemid);
    display: block;
  }
  
  .checkmark {
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .checkmark:after {
    border-radius: 25px;
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    background-color: var(--primary-bluemid);
    width: 50%;
    height: 50%;
    transform: scale(0);
    transition: .1s ease;
  }
  
  .container input:checked ~ .checkmark:after {
    transform: scale(1);
  }
.cart-header-title {
  
    font-weight:100;
    text-align: center;
    letter-spacing: 4px;
    padding: 20px 0;
    font-size: 2.5rem;
    color: var(--primary-bluemid);
    border-bottom: 1px solid var(--primary-bluemid);
    margin-bottom: 30px;
}
.cart-container {
  
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* First Column */
.cart-items {
    flex: 2;
}

/* Second Column */
.cart-summary {
    flex: 1;
    background: var(--primary-grey);
    padding: 20px;
    height: fit-content;
    border: 2px solid var(--primary-bluedark);
}

/* Header Section */
.cart-header {
    font-size:1.3rem;
    font-weight:bold;
    display: flex;
    align-items: center;
    color:var(--primary-bluedark);
    gap: 10px;
    padding: 15px;
    background: white;
    margin-bottom: 20px;
    border: 2px solid var(--primary-bluemid);
    border-radius: 25px;
}

/* Store Section */
.store-section {
    margin-bottom: 30px;
    background: white;
    padding: 15px;
    border-radius: 25px;
    border: 2px solid var(--primary-bluelight);
}



/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-title {
    color:var(--primary-bluedark);
    font-weight: bold;
    margin-bottom: 5px;
}

.item-description {
    color: var(--primary-bluelight);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.item-actions {
    display: flex;
    gap:20px;
    align-items: center;
    gap: 15px;
}
.price {
    color:var(--primary-bluelight);
    font-weight: bold;
    min-width: 80px;
    text-align: right;
}
.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 25px;
    border: 2px solid var(--primary-bluemid); 
}

.quantity-btn {

    width: 25px;
    height: 25px;
    font-size:15px;
    font-weight: bold;
    color:var(--primary-bluemid);
    /* border: 1px solid #ddd; */
    /* background: #fff; */
    background:none;
    border :none;
    cursor: pointer;
}

.quantity-input {
    color:var(--primary-bluedark);

    font-weight:bold;
    width: 40px;
    text-align: center;
    background:none;
    border: none;
    padding: 3px;

}

/* For Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* input[type=number] {
    -moz-appearance: textfield;
} */
.delete-btn {
    color: var(--primary-bluelight);
    font-family:"Secular One";
    font-size:0.9rem;
    cursor: pointer;
    background: none;
    border: none;
}


/* Summary Section */
/* Summary Section */
.cart-summary {
    padding: 25px;
    background: white;
    border: 2px solid var(--primary-bluemid);
    border-radius: 25px;
   

}

.summary-title {
    color: var(--primary-bluedark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.summary-items {
    list-style: none;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--primary-bluelight);
    font-size: 0.9rem;
}

.item-quantity {
    color: var(--primary-bluemid);
    margin-right: 10px;
}

.item-name {
    flex-grow: 1;
    color: var(--primary-bluelight);
}

.item-price {
    color: var(--primary-bluedark);
}

.divider {
    border-bottom: 2px solid var(--primary-bluedark);
    margin: 15px 0;
}

.amount-breakdown {
    margin: 15px 0;
}


.summary-total {
    margin: 20px 0;
}

.summary-total .summary-item {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-bluemid);
}



/* Mobile View */
@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-item {
        flex-wrap: wrap;
        position: relative;
        padding-left: 40px;
    }

    .item-checkbox {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .item-actions {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
        padding-top: 10px;
    }
}
/* Categories Section Styles */
.categories-section {
    padding: 4rem 2rem;
    background: #ffffff;
  }
  
  .categories-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #0C7489;
  }
  
  .categories-wrapper {
    position: relative;
    padding: 0 3rem;
  }
  
  /* Update the categories slider styles */
  .categories-slider {
    overflow: hidden;
    width: 100%;
  }
  
  .slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease-in-out;
  }
  
  .category-card {
    flex: 0 0 calc(33.33% - 1rem);
    min-width: calc(33.33% - 1rem);
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .category-icon {
    font-size: 2.5rem;
    color: #0C7489;
    margin-bottom: 1rem;
  }
  
  .category-name {
    font-size: 1.1rem;
    color: #13505B;
    margin: 0;
  }
  
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #119DA4;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .nav-arrow:hover {
    background: #0C7489;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .prev-arrow {
    left: 0;
  }
  
  .next-arrow {
    right: 0;
  }
  .send{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--primary-bluelight);
    border: none;
    padding: 1rem;
    font-size: 1rem;
  
    border-radius: 1rem;
    color: var(--primary-grey);
    box-shadow: 0 0.4rem #dfd9d9;
    cursor: pointer;
   }
   
   .send:active {
    color: white;
    box-shadow: 0 0.2rem #dfd9d9;
    transform: translateY(0.2rem);
   }
   
   .send:hover:not(:disabled) {
    background: var(--primary-bluedark);
    color: white;
    text-shadow: 0 0.1rem #bcb4b4;
   }
   
   .send:disabled {
    cursor: auto;
    color: grey;
   }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .category-card {
        flex: 0 0 calc(25% - 1.2rem);
    }
  }
  
  @media (max-width: 768px) {
    .categories-section {
        padding: 3rem 1rem;
    }
  
    .category-card {
        flex: 0 0 calc(33.33% - 1rem);
    }
  
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .category-card {
        flex: 0 0 calc(50% - 0.8rem);
    }
  
    .category-icon {
        font-size: 2rem;
    }
  
    .category-name {
        font-size: 1rem;
    }
  
    .categories-wrapper {
        padding: 0 2rem;
    }
  }
    /* Products Section Styles */
  .products-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
  }
  
  .products-container {
  max-width: 1200px;
  margin: 0 auto;
  }
  
  .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  }
  
  .view-all {
  background: #0C7489;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  }
  
  .view-all:hover {
  background: #13505B;
  transform: translateY(-2px);
  }
  
  .products-wrapper {
  position: relative;
  padding: 0 3rem;
  }
  
  .products-slider {
  overflow: hidden;
  }
  
  .slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  }
  
  .product-card {
  flex: 0 0 calc(25% - 1.5rem);
  
  
  padding: 1.5rem;
  
  transition: transform 0.3s ease;
  }
  
  .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .product-image {
  position: relative;
  padding-top: 100%;
  margin-bottom: 1rem;
  
  overflow: hidden;
  }
  
  .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  .product-name {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #119DA4;
  }
  
  .product-desc {
  font-size: 0.9rem;
  color: #13505B;
  margin: 0.5rem 0;
  line-height: 1.4;
  }
  
  .product-price {
  font-size: 1.2rem;
  color: #13505B;
  font-weight: bold;
  margin: 0.5rem 0;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.33% - 1.3rem);
  }
  }
  
  @media (max-width: 768px) {
  .products-section {
    padding: 3rem 1rem;
  }
  
  .product-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .products-wrapper {
    padding: 0 2rem;
  }
  }
  
  @media (max-width: 480px) {
  .product-card {
    flex: 0 0 100%;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  }
  /* Add these styles to your existing CSS */
  .products-slider {
  overflow: hidden;
  transition: all 0.3s ease;
  }
  
  .slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease-in-out;
  }
  
  .products-wrapper.show-all {
  padding: 0;
  }
  
  .products-wrapper.show-all .nav-arrow {
  display: none;
  }
  
  .products-wrapper.show-all .products-slider {
  overflow: visible;
  }
  
  .products-wrapper.show-all .slider-track {
  flex-wrap: wrap;
  transform: none !important;
  }
  
  .products-wrapper.show-all .product-card {
  flex: 0 0 calc(25% - 1.5rem);
  }
  
  @media (max-width: 1024px) {
  .products-wrapper.show-all .product-card {
  flex: 0 0 calc(33.33% - 1.3rem);
  }
  }
  
  @media (max-width: 768px) {
  .products-wrapper.show-all .product-card {
  flex: 0 0 calc(50% - 1rem);
  }
  }
  
  @media (max-width: 480px) {
  .products-wrapper.show-all .product-card {
  flex: 0 0 100%;
  }
  }
  /* Products Grid Section */
  .products-grid-section {
  padding: 4rem 2rem;
  background: white;
  }
  
  .products-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  }
  
  .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  }
  
  .product-grid-card {
  background: #119DA4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
  }
  
  .product-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .product-grid-image {
  position: relative;
  padding-top: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  }
  
  .product-grid-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  .cart-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #119DA4;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  }
  
  .cart-btn:hover {
  background: #13505B;
  transform: scale(1.1);
  }
  
  .product-grid-name {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #ffffff;
  font-weight: 100;
  }
  
  .product-grid-desc {
  font-weight: 100;
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0.5rem 0;
  line-height: 1.7;
  height: 40px;
  overflow: hidden;
  }
  
  .product-grid-price {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
  margin: 0.5rem 0;
  }
  
  .view-all-container {
  text-align: center;
  margin-top: 3rem;
  }
  
  .view-all-grid {
  background: #0C7489;
  border-radius: 25px;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  }
  
  .view-all-grid:hover {
  background: #13505B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
  .products-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  }
  
  @media (max-width: 768px) {
  .products-grid-section {
      padding: 3rem 1rem;
  }
  
  .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
  }
  
  @media (max-width: 480px) {
  .products-grid {
      grid-template-columns: 1fr;
  }
  
  .view-all-grid {
      width: 100%;
      padding: 1rem;
  }
  }
  /* Footer Styles */
  .site-footer {
      background: #13505B;
      color: #ffffff;
      padding: 4rem 0 2rem;
      margin-top: 4rem;
  }
  
  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
  }
  
  .footer-section {
      margin-bottom: 2rem;
  }
  
  .footer-heading {
      color: #ffffff;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      position: relative;
  }
  
  .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: white;
  }
  
  .footer-text {
      color: #cccccc;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }
  
  .social-links {
      text-decoration: none;
      display: flex;
      gap: 1rem;
  }
  
  .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      transition: all 0.3s ease;
  }
  
  .social-icon:hover {
      background: #119DA4;
      transform: translateY(-3px);
  }
  
  .footer-links li {
      list-style: none; /* Add this line */
      text-decoration: none;
      margin-bottom: 0.8rem;
  }
  
  .footer-links a {
      color: #cccccc;
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
      color: #119DA4;
  }
  
  .contact-info li {
      text-decoration: none;
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      color: #cccccc;
  }
  
  .contact-info i {
      margin-right: 1rem;
      color: #119DA4;
      width: 20px;
  }
  
  .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
  }
  
  .copyright {
      color: #cccccc;
      font-size: 0.9rem;
  }
  
  .payment-methods {
      display: flex;
      gap: 1.5rem;
      font-size: 1.8rem;
  }
  
  .payment-methods i {
      color: #cccccc;
      transition: color 0.3s ease;
  }
  
  .payment-methods i:hover {
      color: #119DA4;
  }
  
  .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #119DA4;
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .back-to-top.show {
      opacity: 1;
      visibility: visible;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
      }
  
      .footer-heading::after {
          left: 50%;
          transform: translateX(-50%);
      }
  
      .social-links {
          justify-content: center;
      }
  
      .contact-info li {
          justify-content: center;
      }
  
      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }
  }
  .sign-in-btn {
      background: #0C7489;
      color: white;
      border: none;
      padding: 0.5rem 1.5rem;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      margin-left: 1rem;
  }
  
  .sign-in-btn:hover {
      background: #13505B;
      transform: translateY(-2px);
  }
  
  .mobile-sign-in {
      width: 100%;
      margin: 1rem 0;
      padding: 0.8rem;
  }
  
  @media (max-width: 768px) {
      .nav-icons .sign-in-btn {
          display: none;
      }
  }