Shop page css code----------------------------------------------------------------------------------------------------------------------

/* ========== WooCommerce Product Grid ========== */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ========== Product Card Styling ========== */
ul.products li.product {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Product Image */
ul.products li.product img {
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}

/* Product Title */
ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

/* Button (like "Add to cart" or "Read more") */
ul.products li.product a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073aa;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}

ul.products li.product a.button:hover {
  background-color: #005177;
}







/* Fix image container height and alignment */
ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: white;
    transition: box-shadow 0.3s ease;
    min-height: 400px; /* Make all cards same height */
}

/* Image container fix */
ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

/* Image frame */
ul.products li.product img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Title style */
ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 18px;
    margin: 10px 0 0 0;
    flex-grow: 0;
}

/* Read more button style */
ul.products li.product .button {
    background-color: #0077a3;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: 0.3s ease;
    margin-top: auto;
}

/* Hover effect */
ul.products li.product:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

ul.products li.product .button:hover {
    background-color: #005f85;
    transform: scale(1.05);
}











/* === Title === */
.woocommerce-products-header__title.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

/* === Sorting + Result Container Layout === */
.storefront-sorting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
    padding: 0 15px;
}

/* === Sorting Dropdown === */
.woocommerce-ordering {
    font-family: 'Inter', sans-serif;
}

.woocommerce-ordering select.orderby {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    cursor: pointer;
}

.woocommerce-ordering select.orderby:hover {
    border-color: #0077a3;
}

/* === Result Count Text === */
.woocommerce-result-count {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* === Pagination === */
.woocommerce-pagination {
    text-align: center;
    margin-top: 30px;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.woocommerce-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #0077a3;
    border: 1px solid #0077a3;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce-pagination .page-numbers:hover {
    background-color: #Transparent;
    color: #0b0a0a;
}

.woocommerce-pagination .page-numbers.current {
    background-color: #0077a3;
    color: #fff;
    border-color: #0077a3;
    pointer-events: none;
}

.woocommerce-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #aaa;
}
















/* === Shop Title === */
.woocommerce-products-header__title.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-top: 30px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
}

.woocommerce-products-header__title.page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0077a3;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* === Sorting + Result Row === */
.storefront-sorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* === Dropdown Styling === */
.woocommerce-ordering select.orderby {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #ffffff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23000000' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    cursor: pointer;
}

/* === Result Count === */
.woocommerce-result-count {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

/* === Pagination === */
.woocommerce-pagination {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    justify-content: center;
    list-style: none;
}

.woocommerce-pagination .page-numbers {
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #0077a3;
    border: 1px solid #0077a3;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.woocommerce-pagination .page-numbers:hover {
    background-color: #0077a3;
    color: #fff;
}

.woocommerce-pagination .page-numbers.current {
    background-color: #0077a3;
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

.woocommerce-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #999;
    font-weight: bold;
}





.swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;            
  padding: 0;
  margin: 0 auto 0 auto;
  flex-wrap: nowrap;
}


.swiper-slide img {
  width: 242px;        
  height: 268px;
  object-fit: cover;
  border-radius: 19px;   
  background: #f8fafc;    
  box-shadow: 0 4px 18px rgba(44, 51, 73, 0.11);
  display: block;
  transition: 
    box-shadow 0.18s cubic-bezier(.34,1.56,.64,1),
    transform 0.18s cubic-bezier(.34,1.56,.64,1);
}

.swiper-slide img:hover {
  box-shadow: 0 8px 28px rgba(35,39,46,0.16);
  transform: translateY(-2px) scale(1.035);
}


.swiper-slide {
  margin: 0 !important;
  padding: 0 !important;
}


.swiper-slide[style] {
  width: 242px !important;
  margin-right: 0 !important;
}



	
