/*
 Theme Name: GeneratePress Child
 Theme URI: https://yoursite.com
 Description: Child theme for GeneratePress
 Author: Your Name
 Author URI: https://yoursite.com
 Template: generatepress
 Version: 1.0
*/
* .why-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222; /* dark gray for elegance */
  margin-bottom: 15px;
  letter-spacing: 1px; /* slight spacing for modern look */
  text-transform: uppercase; /* makes it bold and standout */
}
/* Make the active (selected) menu item always visible */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    display: inline-block !important; /* Ensure it's displayed */
    opacity: 1 !important; /* Fully visible */
    visibility: visible !important; /* Not hidden */
    color: #fff !important; /* Change text color so it's visible */
    background-color: rgba(255, 255, 255, 0.2); /* Optional highlight */
}

/* Optional: keep hover effect as well */
.main-navigation .current-menu-item > a:hover,
.main-navigation .current_page_item > a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}/* Keep menu text visible when hovered */
.main-navigation a:hover,
.main-navigation li:hover > a,
.main-navigation .current-menu-item > a {
    color: #ffffff !important; /* White text on hover */
    background-color: rgba(255, 255, 255, 0.15) !important; /* Light highlight */
    opacity: 1 !important;
    visibility: visible !important;
}/* Base style for menu links */
.main-navigation a {
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    color: #ffffff; /* Normal text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Create underline using ::after pseudo-element */
.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff; /* Underline color */
    transition: width 0.3s ease;
}

/* Hover effect: change text color + animate underline */
.main-navigation a:hover {
    color: #ffdd57; /* Change text color on hover */
}

.main-navigation a:hover::after {
    width: 100%; /* Expand underline */
}

/* Keep effect for current active menu item */
.main-navigation .current-menu-item > a::after {
    width: 100%;
}
/* Style for product cards */
.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
    border-color: #00b894;
}

/* Product image styling */
.woocommerce ul.products li.product img {
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Add to Cart button style */
.woocommerce ul.products li.product .button {
    background-color: #00b894;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #019270;
    color: #fff !important;
}
/* 1. Add to Wishlist styling */
.woocommerce ul.products li.product a.add_to_wishlist {
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
    opacity: 1 !important;
    transition: color 0.3s ease-in-out;
}

.woocommerce ul.products li.product a.add_to_wishlist:hover {
    color: #ff6600 !important; /* Orange hover */
}

/* 2. Sale badge styling */
.woocommerce span.onsale {
    background-color: #ff0000 !important; /* Red background */
    color: #fff !important; /* White text */
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    padding: 8px 10px;
    top: 10px !important;
    right: 10px !important;
}

/* 3. Add to Cart button in orange */
.woocommerce ul.products li.product .button {
    background-color: #ff6600 !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #e55b00 !important; /* Darker orange on hover */
}
/* Product title styling */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #222; /* Dark text for visibility */
    margin-top: 10px;
    min-height: 48px; /* Keep consistent height for multiple rows */
}

/* Product price styling */
.woocommerce ul.products li.product .price {
    font-size: 15px;
    font-weight: bold;
    color: #000; /* Black price for strong visibility */
    margin: 5px 0;
}

/* Old price (sale) styling */
.woocommerce ul.products li.product .price del {
    color: #888; /* Slightly greyed out */
    font-weight: normal;
}

/* Add to Wishlist link */
.woocommerce ul.products li.product a.add_to_wishlist {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.woocommerce ul.products li.product a.add_to_wishlist:hover {
    color: #00b894; /* Green on hover */
}
/* ——— Make crossed-out (regular) price fully visible ——— */
.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.wc-block-grid__products .wc-block-grid__product-price del {
  opacity: 1 !important;
  color: #555 !important; /* darker grey for contrast */
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #777;
}

/* Sale price stays bold and clean (no underline) */
.woocommerce ul.products li.product .price ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.wc-block-grid__products .wc-block-grid__product-price ins {
  color: #111 !important;
  font-weight: 800;
  text-decoration: none;
}

/* ——— YITH “Add to wishlist”: always visible ——— */
.yith-wcwl-add-to-wishlist a,
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
  opacity: 1 !important;
  color: #111 !important; /* darker text */
  font-weight: 600;
}

/* Ensure wishlist icon isn’t faded */
.yith-wcwl-add-to-wishlist .yith-wcwl-icon {
  opacity: 1 !important;
  fill: currentColor !important;
}

/* If your theme dims “disabled” buttons, keep them readable */
.woocommerce a.button.disabled,
.woocommerce button.button.disabled,
.woocommerce .button:disabled {
  opacity: 1 !important;
}

/* Extra: stronger text color in product cards */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #111;
}
/* Fix WooCommerce Sale badge for single product page - square style */
.woocommerce span.onsale {
    font-size: 12px !important; /* Smaller text */
    padding: 6px 10px !important; /* Balanced padding */
    background: #ff4d4d !important; /* Red background */
    border-radius: 0 !important; /* Square edges */
    top: 10px !important; /* Position down */
    left: 10px !important; /* Position right */
    z-index: 99; /* Keep above image */
    font-weight: bold !important; /* Bold text */
    text-transform: uppercase; /* SALE instead of Sale! */
}

/* Ensure position on single product page is clean */
.single-product .product .onsale {
    position: absolute !important;
    transform: none !important;
    margin-top: 0 !important;
}/* Fix WooCommerce Sale badge position and size on single product page */
.woocommerce span.onsale {
    font-size: 12px !important; /* Smaller text */
    padding: 4px 8px !important; /* Less padding */
    background: #ff4d4d !important; /* Bright red */
    border-radius: 20px !important; /* Rounded badge */
    top: 10px !important; /* Move down */
    left: 10px !important; /* Move right */
    z-index: 99; /* Make sure it stays above image */
}

/* Optional: prevent it from overlapping product title */
.single-product .product .onsale {
    position: absolute !important;
    transform: none !important;
    margin-top: 0 !important;
}
/* Small sale badge in top-left corner for shop & single product */
.woocommerce span.onsale {
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    background-color: #ff4d4d !important; /* Sale badge color */
    color: #fff !important;
    font-size: 12px !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    line-height: 1.2 !important;
    min-height: auto !important;
    min-width: auto !important;
    display: inline-block !important;
}

/* Remove large shape of default badge */
.woocommerce ul.products li.product .onsale,
.woocommerce div.product .onsale {
    transform: none !important;
}
/* Keep active/selected menu item visible */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation a:focus,
.main-navigation a:active {
    background-color: transparent !important; /* or your preferred color */
    color: #ffffff !important; /* your menu text color */
}
/* Force menu to stay visible when clicked/selected */
.main-navigation ul li:focus > a,
.main-navigation ul li:active > a,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a,
.main-navigation ul li.current-menu-parent > a {
    background-color: #0073aa !important; /* Match hover color */
    color: #ffffff !important; /* Keep text white */
}

/* Also fix when submenu is open */
.main-navigation ul li:focus-within > a {
    background-color: #0073aa !important;
    color: #ffffff !important;
}
/* ===== GeneratePress Footer: 4 sections ===== */

/* Container + grid */
.site-footer .footer-widgets { 
  background:#1D78A4 !important; 
  color:#fff; 
}
.site-footer .inside-footer-widgets{
  padding:40px 20px !important;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:28px;
}
@media (max-width: 992px){
  .site-footer .inside-footer-widgets{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 600px){
  .site-footer .inside-footer-widgets{ grid-template-columns:1fr; }
}

/* Headings */
.site-footer .footer-widgets .widget-title,
.site-footer .footer-widgets h2,
.site-footer .footer-widgets h3{
  color:#fff;
  font-size:18px;
  margin:0 0 14px;
  padding-bottom:6px;
  border-bottom:2px solid #facc15;
}

/* Text */
.site-footer .footer-widgets p{ color:#f0f0f0; line-height:1.6; }

/* Lists + arrows */
.site-footer .footer-widgets ul{ list-style:none; margin:0; padding:0; }
.site-footer .footer-widgets ul li{ 
  margin:0 0 10px; 
  position:relative; 
  padding-left:16px; 
}
.site-footer .footer-widgets ul li:before{
  content:"▸"; position:absolute; left:0; top:0;
}

/* Links */
.site-footer .footer-widgets a{ color:#facc15; text-decoration:none; transition:.2s; }
.site-footer .footer-widgets a:hover{ color:#fff; }

/* Social buttons */
.site-footer .footer-widgets .footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; margin-right:10px;
  background:rgba(255,255,255,0.15);
  border-radius:8px;
}
.site-footer .footer-widgets .footer-social a:hover{ background:#facc15; color:#000; }

/* Bottom bar */
.site-footer .site-info{
  border-top:1px solid rgba(255,255,255,.12);
  background:#17668B !important;
  color:#eee; text-align:center; padding:16px 20px;
}
.site-footer .footer-widgets h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #facc15;
}
/* Footer Widget 1 - About Us */
.site-footer .footer-widgets h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #facc15;
}

.site-footer .footer-widgets .widget:nth-child(1) p {
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.site-footer .footer-widgets p {
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
}.footer-widgets .widget:nth-child(4) {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
}
.footer-widgets .widget:nth-child(4) a {
    color: #f0a500;
}
/* LOOP: Add to Cart = purple */
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.button.add_to_cart_button,
.woocommerce a.button.add_to_cart_button,
a.wp-element-button.add_to_cart_button {
    background: #7b3fe4 !important;
    border-color: #7b3fe4 !important;
    color: #ffffff !important;
}

/* SINGLE PRODUCT: Add to Cart = purple */
.single-product .single_add_to_cart_button,
.single-product .single_add_to_cart_button.button,
.single-product .single_add_to_cart_button.button.alt {
    background: #7b3fe4 !important;
    border-color: #7b3fe4 !important;
    color: #ffffff !important;
}

/* Extra safety: small gap + vertical spacing in loops */
.woocommerce ul.products li.product a.buy-now-button { margin-right: 10px !important; }
.woocommerce ul.products li.product .button { margin-bottom: 6px; }
/* Put Buy Now and Add to Cart on same line in single product */
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 10px; /* space between buttons */
}

/* Make Buy Now match button height */
.single-product .buy-now-button {
    height: 100%;
}
/* ===== My Account Page Styling for GeneratePress Child Theme ===== */

/* Main container layout */
.woocommerce-account .u-columns.col2-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Login & Register box styling */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.08);
    flex: 1 1 400px;
}

/* Titles */
.woocommerce-account h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #004d80;
    margin-bottom: 20px;
}

/* Input fields */
.woocommerce-account input.input-text {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Buttons */
.woocommerce-account button.button,
.woocommerce-account input.button {
    width: 100%;
    background: linear-gradient(90deg, #007bff, #00b4d8);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-account button.button:hover,
.woocommerce-account input.button:hover {
    background: linear-gradient(90deg, #0066cc, #0099bb);
}

/* Lost password link */
.woocommerce-account .lost_password {
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Privacy policy text */
.woocommerce-account .woocommerce-privacy-policy-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}
.woocommerce-account .u-columns.col2-set{display:flex;flex-wrap:wrap;justify-content:center;gap:40px;max-width:1000px;margin:0 auto;padding:40px 20px}
.woocommerce-account .u-column1,.woocommerce-account .u-column2{background:#fff;padding:30px;border-radius:10px;box-shadow:0 3px 12px rgba(0,0,0,.08);flex:1 1 400px}
.woocommerce-account h2{text-align:center;font-size:22px;font-weight:600;color:#004d80;margin-bottom:20px}
.woocommerce-account input.input-text,.woocommerce-account input[type=email],.woocommerce-account input[type=password],.woocommerce-account input[type=text]{width:100%;padding:12px 14px;border-radius:6px;border:1px solid #dcdcdc;background-color:#fafafa;font-size:15px;color:#333;transition:all .3s ease}
.woocommerce-account input.input-text:focus,.woocommerce-account input[type=email]:focus,.woocommerce-account input[type=password]:focus,.woocommerce-account input[type=text]:focus{border-color:#007bff;background-color:#fff;box-shadow:0 0 0 2px rgba(0,123,255,.15);outline:none}
.woocommerce-account ::placeholder{color:#888;font-size:14px}
.woocommerce-account button.button,.woocommerce-account input.button{width:100%;background:linear-gradient(90deg,#007bff,#00b4d8);color:#fff;padding:12px;border:none;border-radius:6px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease}
.woocommerce-account button.button:hover,.woocommerce-account input.button:hover{background:linear-gradient(90deg,#0066cc,#0099bb)}
.woocommerce-account .lost_password{display:block;text-align:center;margin-top:10px}
.woocommerce-account .woocommerce-privacy-policy-text{font-size:14px;color:#555;text-align:center;margin-top:10px}
.nsl-button-google {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
}
/* My Account Navigation Beautification */
.woocommerce-MyAccount-navigation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #0073e6;
    color: #fff;
    border-color: #0073e6;
}
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

/* My Account Content Styling */
.woocommerce-MyAccount-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Table Styling */
.woocommerce-MyAccount-content table {
    border-collapse: collapse;
    width: 100%;
}
.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
    padding: 12px;
    border: 1px solid #ddd;
}
.woocommerce-MyAccount-content table th {
    background: #f5f5f5;
}
.cart-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}
.main-navigation .menu-item a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.cart-count {
    border-radius: 50%;
    padding: 2px 6px; /* adjust for shape */
    height: auto; /* avoid fixed vertical stretch */
    line-height: 1.2; /* center the number nicely */
}
/* Checkout menu icon styling */
.main-navigation .menu-item a i.fa-credit-card {
    font-size: 16px; /* icon size */
    margin-right: 6px; /* space between icon and text */
    color: #fff; /* icon color */
    vertical-align: middle; /* align with text */
}

/* Optional: hover color match */
.main-navigation .menu-item a:hover i.fa-credit-card {
    color: #ffcc00; /* change to your hover color */
}
/* Home & Ebook menu icon styling */
.main-navigation .menu-item a i.fa-home,
.main-navigation .menu-item a i.fa-book {
    font-size: 16px; /* icon size */
    margin-right: 6px; /* space between icon & text */
    color: #fff; /* icon color */
    vertical-align: middle; /* align icon with text */
}

/* Hover effect */
.main-navigation .menu-item a:hover i.fa-home,
.main-navigation .menu-item a:hover i.fa-book {
    color: #ffcc00; /* hover color */
}
/* Footer widgets font and color */
.footer-widget,
.footer-widget a,
.footer-widget p,
.footer-widget li,
.footer-widget span {
    font-family: 'Georgia', serif; /* Elegant serif font */
    color: #FFD700 !important; /* Gold text */
    font-size: 15px;
    line-height: 1.6;
}

/* Footer widget titles */
.footer-widget h3,
.footer-widget h4,
.footer-widget .widget-title {
    font-family: 'Playfair Display', serif; /* Stylish serif for headings */
    font-weight: 600;
    font-size: 18px;
    color: #FFD700 !important; /* Gold titles */
    letter-spacing: 0.5px;
}

/* Footer links hover effect */
.footer-widget a:hover {
    color: #FFA500 !important; /* Slightly darker gold on hover */
    text-decoration: underline;
}
/* All footer widget areas text */
.footer-widget-1, 
.footer-widget-2, 
.footer-widget-3, 
.footer-widget-4,
#footer-widget-1,
#footer-widget-2,
#footer-widget-3,
#footer-widget-4 {
    font-family: 'Georgia', serif !important; /* Elegant serif font */
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #FFD700 !important; /* Gold text */
}

/* Footer widget titles */
.footer-widget-1 .widget-title, 
.footer-widget-2 .widget-title, 
.footer-widget-3 .widget-title, 
.footer-widget-4 .widget-title,
#footer-widget-1 .widget-title,
#footer-widget-2 .widget-title,
#footer-widget-3 .widget-title,
#footer-widget-4 .widget-title {
    font-family: 'Playfair Display', serif !important; /* Elegant serif for headings */
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    letter-spacing: 0.5px !important;
}

/* Footer links hover */
.footer-widget-1 a:hover,
.footer-widget-2 a:hover,
.footer-widget-3 a:hover,
.footer-widget-4 a:hover,
#footer-widget-1 a:hover,
#footer-widget-2 a:hover,
#footer-widget-3 a:hover,
#footer-widget-4 a:hover {
    color: #FFA500 !important;
    text-decoration: underline !important;
}
/* Copyright text at bottom of footer */
.site-info,
.copyright,
.footer-bottom,
.footer-bottom p,
.site-footer .site-info {
    font-family: 'Georgia', serif !important; /* Elegant serif font */
    font-size: 14px !important;
    color: #FFD700 !important; /* Gold text */
    text-align: center; /* Center align if you like */
    letter-spacing: 0.5px;
}

/* Links inside copyright */
.site-info a,
.copyright a,
.footer-bottom a {
    color: #FFD700 !important;
    text-decoration: none;
}

.site-info a:hover,
.copyright a:hover,
.footer-bottom a:hover {
    color: #FFA500 !important; /* Slightly darker gold on hover */
    text-decoration: underline;
}
/* General checkout form styling */
.woocommerce-checkout form.checkout {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Input fields */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

/* On focus */
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #00a859; /* Change to your theme's accent color */
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 168, 89, 0.2);
}

/* Section titles */
.woocommerce-checkout h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #00a859; /* Accent underline */
    padding-bottom: 6px;
}

/* Order summary box */
.woocommerce-checkout-review-order {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Place order button */
#place_order {
    background-color: #00a859;
    border-radius: 8px;
    font-size: 16px;
    padding: 12px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#place_order:hover {
    background-color: #007f45;
}
/* General font for WooCommerce pages */
body.woocommerce-page {
    font-family: 'Poppins', sans-serif; /* Modern Google Font */
    color: #333;
}

/* Page titles (e.g., Shop, Cart, Checkout, My Account) */
.woocommerce-page .entry-title,
.woocommerce-products-header__title,
.woocommerce-page h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #222;
    text-transform: capitalize;
    margin-bottom: 15px;
    border-bottom: 3px solid #00a859; /* Accent line under heading */
    padding-bottom: 6px;
}

/* Subheadings (like "Billing details", "Your order") */
.woocommerce h3,
.woocommerce-page h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #444;
    border-left: 4px solid #00a859;
    padding-left: 10px;
    margin-top: 20px;
}

/* Paragraph & table text */
.woocommerce-page p,
.woocommerce-page table {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
/* ===== WooCommerce Checkout Beautification ===== */

/* Global checkout font */
.woocommerce-checkout form,
.woocommerce-checkout .form-row label,
.woocommerce-checkout input,
.woocommerce-checkout textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
}

/* Coupon section styling */
.woocommerce-form-coupon-toggle {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.woocommerce-form-coupon-toggle a {
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-form-coupon-toggle a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Billing details box */
.woocommerce-billing-fields {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Billing labels */
.woocommerce-billing-fields label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

/* Billing input fields */
.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select,
.woocommerce-billing-fields textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus effect for input fields */
.woocommerce-billing-fields input.input-text:focus,
.woocommerce-billing-fields select:focus,
.woocommerce-billing-fields textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0,115,170,0.3);
    background: #fff;
}

/* Submit button styling */
#place_order {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

#place_order:hover {
    background: #005177;
}
/* ---------- Fonts (optional) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600&display=swap');

/* ---------- Theme tokens ---------- */
body.woocommerce-checkout {
  --gc-bg: #f6f8fb;
  --gc-card: #ffffff;
  --gc-border: #e6e8ef;
  --gc-muted: #64748b;
  --gc-text: #0f172a;
  --gc-primary: #0ea5e9; /* button / accents */
  --gc-primary-600: #0284c7; /* button hover */
  --gc-accent: #22c55e; /* small accents if needed */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--gc-bg);
}

/* ---------- Section cards ---------- */
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #payment {
  background: var(--gc-card);
  border: 1px solid var(--gc-border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

/* Space between blocks */
body.woocommerce-checkout .woocommerce-billing-fields { margin-bottom: 18px; }
body.woocommerce-checkout #order_review { margin-top: 18px; }

/* ---------- Section headings ---------- */
body.woocommerce-checkout h3,
body.woocommerce-checkout #order_review_heading {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gc-text);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.woocommerce-checkout h3:before,
body.woocommerce-checkout #order_review_heading:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  border-radius: 6px;
  background: var(--gc-primary);
}

/* ---------- Inputs ---------- */
body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .woocommerce form .form-row select {
  width: 100%;
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: var(--gc-text);
  box-shadow: inset 0 1px 0 rgba(16,24,40,.02);
}
body.woocommerce-checkout .woocommerce form .form-row input:focus,
body.woocommerce-checkout .woocommerce form .form-row textarea:focus,
body.woocommerce-checkout .woocommerce form .form-row select:focus {
  outline: none;
  border-color: var(--gc-primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
}
body.woocommerce-checkout .woocommerce form .form-row label {
  font-size: 13px;
  color: var(--gc-muted);
  margin-bottom: 6px;
}

/* ---------- Order table ---------- */
body.woocommerce-checkout #order_review table.shop_table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gc-border);
}
body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
  padding: 12px 14px;
  border-top: 1px solid var(--gc-border);
}
body.woocommerce-checkout #order_review table.shop_table thead th {
  background: #f1f5f9;
  font-weight: 600;
}
body.woocommerce-checkout #order_review .order-total th,
body.woocommerce-checkout #order_review .order-total td {
  font-weight: 700;
}

/* ---------- Payments box ---------- */
body.woocommerce-checkout #payment {
  margin-top: 16px;
}
body.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border-bottom: none;
}
body.woocommerce-checkout #payment .wc_payment_method label {
  font-weight: 600;
  color: var(--gc-text);
}
body.woocommerce-checkout #payment .payment_box {
  background: #f8fafc;
  border: 1px dashed var(--gc-border);
  border-radius: 12px;
  padding: 14px;
  color: var(--gc-muted);
}

/* ---------- Terms checkbox ---------- */
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  background: var(--gc-card);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0;
  font-size: 14px;
  color: var(--gc-muted);
}

/* ---------- Pay button ---------- */
body.woocommerce-checkout #place_order,
body.woocommerce-checkout .woocommerce #place_order.button {
  background: linear-gradient(90deg, var(--gc-primary), var(--gc-primary-600));
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  transition: transform .06s ease, filter .2s ease;
}
body.woocommerce-checkout #place_order:hover {
  filter: saturate(1.1);
  transform: translateY(-1px);
}

/* ---------- Layout polish ---------- */
@media (min-width: 769px) {
  /* tighten the gap between the two columns if your theme uses .col2-set */
  body.woocommerce-checkout .col2-set .col-1,
  body.woocommerce-checkout .col2-set .col-2 {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout #payment {
    padding: 16px 14px;
    border-radius: 14px;
  }
  body.woocommerce-checkout h3,
  body.woocommerce-checkout #order_review_heading { font-size: 18px; }
}
/* Force WooCommerce checkout to one-column layout */
body.woocommerce-checkout .col2-set {
    width: 100%;
    display: block;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
}

/* Remove unnecessary empty space */
body.woocommerce-checkout #customer_details {
    margin-bottom: 20px;
}

body.woocommerce-checkout #order_review {
    margin-top: 0;
}
/* Import a clean font (optional) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* -------- Shop page top bar (results count + sorting dropdown) -------- */
.woocommerce-result-count,
.woocommerce-ordering select {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

/* Style the dropdown itself */
.woocommerce-ordering select {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
}

/* Dropdown options font */
.woocommerce-ordering select option {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}

/* -------- My Account page tables, text & navigation -------- */
.woocommerce-MyAccount-navigation ul li a,
.woocommerce-MyAccount-content,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
}
/* Import Google Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

 * .nsl-button-google {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
}
 * .quantity.buttons_added {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.quantity .plus,
.quantity .minus {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
}

.quantity .plus:hover,
.quantity .minus:hover {
    background-color: #ddd;
}

.quantity .qty {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    height: 34px;
}
 * /* Match Buy Now button style to Add to Cart */
.woocommerce ul.products li.product .buy-now-button,
.single-product .buy-now-button {
    background-color: #ff7a00 !important; /* Orange background */
    color: #fff !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold; /* Same bold text */
    text-transform: none; /* Keep 'Buy Now' as written */
    border-radius: 5px;
    padding: 0.618em 1em; /* Same WooCommerce padding */
    border: 1px solid #ff7a00;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

/* Hover effect same as Add to Cart */
.woocommerce ul.products li.product .buy-now-button:hover,
.single-product .buy-now-button:hover {
    background-color: #e86b00 !important;
    border-color: #e86b00 !important;
    color: #fff !important;
}
 * /* Match Buy Now button style to Add to Cart */
.woocommerce ul.products li.product .buy-now-button,
.single-product .buy-now-button {
    background-color: #ff7a00 !important; /* Orange background */
    color: #fff !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold; /* Same bold text */
    text-transform: none; /* Keep 'Buy Now' as written */
    border-radius: 5px;
    padding: 0.618em 1em; /* Same WooCommerce padding */
    border: 1px solid #ff7a00;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

/* Hover effect same as Add to Cart */
.woocommerce ul.products li.product .buy-now-button:hover,
.single-product .buy-now-button:hover {
    background-color: #e86b00 !important;
    border-color: #e86b00 !important;
    color: #fff !important;
}


/* Import parent theme styles */
@import url("../generatepress/style.css");