.site-header, .site-footer,{
	display:none;
}
.jp-relatedposts
{
	display:none !Important;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
    background: #F5F5F5;
    border-radius: 5px;
}
.site-header,.site-footer
{
	display:none;
}

/* =========================
   GLOBAL CONTAINER STYLE
========================= */
body
{ font-family:barlow !Important;
}
.wc-block-checkout{
    background: #fff;
    font-family:barlow !Important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	
	width:95%;
	margin-left:2%;
	padding:10px;
	
	
}

.wc-block-cart{
    background: #fff;
    
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	width:95%;
	margin-left:10%;
	padding:20px;
	padding-top:40px !important;
	
	
	
}


.woocommerce-account {
    background: #fff;
    
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	margin-bottom:30px !important;
	
	
}

/* =========================
   CART ITEMS TABLE
========================= */
.wc-block-cart-items__header-image
{
	padding:10px !important;
}
.wc-block-cart-items__row {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
}

.wc-block-cart-items__row:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* PRODUCT NAME */
.wc-block-components-product-name {
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

/* PRICE */
.wc-block-components-product-price__value {
    color: #17305B;
    font-weight: 700;
}

/* =========================
   QUANTITY INPUT
========================= */
.wc-block-components-quantity-selector {
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.wc-block-components-quantity-selector__input {
    border: none;
    text-align: center;
}

/* =========================
   REMOVE BUTTON
========================= */
.wc-block-cart-item__remove-link {
    color: #999;
    transition: 0.3s;
}

.wc-block-cart-item__remove-link:hover {
    color: red;
}

/* =========================
   CART TOTALS SIDEBAR
========================= */
.wc-block-cart__sidebar {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
}

/* TOTAL TEXT */
.wc-block-components-totals-item__label {
    font-weight: 600;
}

/* TOTAL PRICE */
.wc-block-components-totals-item__value {
    color: #17305B;
    font-weight: 700;
}

/* =========================
   CHECKOUT BUTTON
========================= */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-checkout__submit-button {
    background: #17305B !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.wc-block-components-button:hover {
    background: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(82,148,33,0.3);
}

/* =========================
   COUPON DROPDOWN
========================= */
.wc-block-components-panel__button {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* =========================
   CHECKOUT FIELDS
========================= */
.wc-block-components-text-input input,
.wc-block-components-text-input select,
.wc-block-components-textarea textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
}

.wc-block-components-text-input input:focus {
    border-color: #529421;
    box-shadow: 0 0 0 2px rgba(82,148,33,0.1);
}

/* =========================
   ORDER SUMMARY (CHECKOUT)
========================= */
.wc-block-components-order-summary {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
}

/* =========================
   MY ACCOUNT PAGE
========================= */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 20px;
}

/* SIDEBAR */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
}

/* MENU LINKS */
.woocommerce-MyAccount-navigation ul li  {
    display: block;
    padding: 0px;
    border-radius: 8px;
    color: #333;
    transition: 0.3s;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    color: #333;
    transition: 0.3s;
}

/* ACTIVE MENU */
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #17305B;
    color: #fff;
}

/* CONTENT AREA */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

/* =========================
   LOGIN / REGISTER FORM
========================= */
.woocommerce form.login,
.woocommerce form.register {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* INPUT FIELDS */
.woocommerce form input.input-text {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
    width: 100%;
}

/* BUTTON */
.woocommerce form button {
    background: #529421;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.woocommerce form button:hover {
    background: #3f7a18;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}
.entry-title
{
	text-align: center;
    color: #fff;
    padding: 10px;
	background:#17305B;
	border-radius:10px;
}

.woocommerce div.product .product_title {
 
    background: none;
    color: #17305B;
    text-align: left;
}
.woocommerce-Price-amount
{
	color:black;
	font-size:28px;
	font-weight:bold;
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    width: 150px;
    height: 50px;
    border-radius: 10px;
	background-color:#17305B;
}
.posted_in a {
    pointer-events: none;
    cursor: default;
	color:#17305B;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    display:none;
}
/* Reviews Wrapper */
.woocommerce-Reviews {
    background: #F3F3F3;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 25px;
    margin-top: 30px;
}

/* Title */
.woocommerce-Reviews-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

/* "No reviews" text */
.woocommerce-noreviews {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Form Wrapper */
#review_form_wrapper {
    margin-top: 20px;
}

/* Form Container */
#review_form {
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 20px;
}

/* Reply Title */
.comment-reply-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Labels */
.comment-form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

/* Textarea */
.comment-form textarea {
    width: 100%;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    resize: none;
}

/* Rating Stars */
.comment-form-rating .stars a {
    color: #17305B;
    font-size: 18px;
    margin-right: 5px;
}

/* Submit Button */
.comment-form .submit {
    background: #17305B;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button Hover */
.comment-form .submit:hover {
    background: #a90f14;
}

/* Inputs focus */
.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: #17305B;
    box-shadow: 0 0 0 1px rgba(209, 23, 28, 0.2);
}
/* Section Title */
.related.products h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Product Card */
.related.products ul.products li.product {
    background: #F3F3F3;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
}

/* Hover Effect */
.related.products ul.products li.product:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Remove default link styling */
.related.products ul.products li.product a {
    text-decoration: none;
    color: inherit;
}

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

/* Product Title */
.related.products ul.products li.product h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
	height:70px;
}

.woocommerce-button{
	background: #17305B !important;
    color: #fff !important;
   border-radius: 50px !important;
}
/* Add to Cart Button */
.related.products ul.products li.product .button {
    background: #17305B;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s ease;
}

/* Button Hover */
.related.products ul.products li.product .button:hover {
    background: #a90f14;
}
@media (max-width: 767px) {
    .related.products ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .related.products ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }
}

.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    
}

.woocommerce ul.products li.product h2 {
    font-size: 18px !important;
    color:black;
    font-weight: 600;
       height: 80px;
}
.amount
{
	font-size: 18px !important;
    color:black;
}

.woocommerce ul.products li.product .price {
     font-weight: bold;
    color: black;
}

.woocommerce ul.products li.product .button {
    background: #17305B;
    border-radius: 50px;
    color: #fff;
}

.woocommerce-breadcrumb
{
	display:none;
}
/* =======================
   PRODUCT GRID STYLE
======================= */

.wc-block-grid__products{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:25px !important;
}

/* Product card */
.wc-block-grid__product{
    background:#fff !important;
    border:1px solid #e8e8e8 !important;
    border-radius:16px !important;
    padding:20px !important;
    text-align:center !important;
    transition:.3s;
    overflow:hidden;
}

.wc-block-grid__product:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Product image */
.wc-block-grid__product-image{
    margin-bottom:15px;
}

.wc-block-grid__product-image img{
    width:100%;
    border-radius:12px;
    transition:.3s;
}

.wc-block-grid__product:hover img{
    transform:scale(1.05);
}

/* Product title */
.wc-block-grid__product-title{
    font-size:18px !important;
    font-weight:600 !important;
    color:#333 !important;
    margin-bottom:10px;
    text-decoration:none !important;
}

/* Price */
.wc-block-grid__product-price{
    font-size:18px;
    font-weight:700;
    color:#17305b;
    margin-bottom:15px;
}

/* Add to cart button */
.wc-block-grid__product-add-to-cart{
    margin-top:15px;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link{
    display:block;
    width:100%;
    background:#17305b !important;
    color:#fff !important;
    border-radius:10px !important;
    padding:12px !important;
    text-decoration:none !important;
    border:none !important;
    transition:.3s;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover{
    opacity:.9;
    transform:translateY(-2px);
}

/* Sale badge */
.wc-block-grid__product-onsale{
    position:absolute;
    top:15px;
    left:15px;
    background:#17305b;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

/* Mobile */
@media(max-width:768px){

.wc-block-grid__products{
    grid-template-columns:repeat(2,1fr) !important;
}

}

@media(max-width:480px){

.wc-block-grid__products{
    grid-template-columns:1fr !important;
}

}
.wc-block-grid.has-4-columns .wc-block-grid__product {
    max-width: 100% !important;
}
.alignwide {
     margin-inline: 0px !important;
}