/*
Theme Name: PetFunda V2
Theme URI: https://abuomama.dev
Author: Abu Omama
Author URI: https://abuomama.dev
Description: PetFunda Wordpress Theme
Version: 1.0
Text Domain: petfunda
*/

:root {
  --white: #FFFFFF;
  --black: #28283c;
  --navy: #00536b; /* Based on the screenshot */
  --orange: #2e8200; /* Brand accent color */
  --gray-text: #666;
  --dark-blue: #003049;
  --bg-pink: #FFF0ED; /* Light pink from screenshot */
  --custom-ease: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  --shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "IBM Plex Sans", sans-serif; font-size: 16px; line-height: 1.3; font-weight: 400; color: var(--black); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.container { width: calc(100% - 24px); max-width: 1440px; padding: 0 24px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.bg-f9f9f9 { background-color: #f9f9f9; }
.bg-navy { background-color: var(--navy); }

.text-white { color: var(--white); }
.text-black { color: var(--black); }

.flex { display: flex; }
.inline-block { display: inline-block !important; }
.flex-wrap { flex-wrap: wrap; }

.items-center { align-items: center; }

.justify-between { justify-content: space-between; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.py-10 { padding-top: 10px; padding-bottom: 10px; }
.py-15 { padding-top: 15px; padding-bottom: 15px; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.fs-18 { font-size: 18px; }
.fs-32 { font-size: 32px; }
.lh-2 { line-height: 2.6; }
.fw-500 { font-weight: 500; }

.text-center { text-align: center; }

.decoration-none { text-decoration: none; }

.btn-orange, .wc-block-components-button { background: var(--orange); color: var(--white); padding: 10px 20px; border-radius: 25px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: background 0.3s var(--custom-ease); }
.btn-orange:hover, .wc-block-components-button:hover { background: var(--navy); color: var(--white); }
.wc-block-components-button { text-decoration: none !important; color: var(--white) !important;}
.btn-orange svg, .wc-block-components-button svg { width: 18px; height: 18px; fill: var(--white); }
.btn-orange:hover svg, .wc-block-components-button:hover svg { fill: var(--white); }

.list-style-none { list-style: none; }

.showonmobile { display: none; }

a { transition: var(--custom-ease); text-decoration: none; }
a:hover { color: var(--orange);}
.navyhover:hover, .navyhover a:hover { color: var(--navy);}

/* HEADER START */
.top-bar { font-size: 13px; }
.top-link { margin-right: 10px; }
.separator { color: rgba(255,255,255,0.3); margin-right: 10px; }

.logo { margin: -10px 0; }
.search-container { width: 50%; }
.search-input { width: 100%; padding: 12px 12px 12px 35px; border-radius: 25px; border: 1px solid #ccc; background: #fcfcfc; outline: none; }
.search-icon { left: 10px; top: 50%; transform: translateY(-50%); fill: #999; width: 20px; }
.header-actions { gap: 20px; font-size: 14px; }
.action-item { gap: 8px; }
.action-item svg { width: 18px; height: 18px; fill: var(--navy); }
.action-item:hover svg { fill: var(--orange); }

.nav-bar { background: #eff5ff; border-block: 1px solid #e0e6ed; }
.main-nav { gap: 30px; font-size: 15px; }

/* Navigation Dropdowns */
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 200px; padding: 10px 0; box-shadow: var(--shadow); z-index: 1000; list-style: none; }
.sub-menu li a { display: block; padding: 8px 20px; color: var(--black); font-size: 14px; text-decoration: none; }
.sub-menu li a:hover { background: #f8f8f8; color: var(--orange); }
.has-children:hover .sub-menu { display: block; }

.social-icons { gap: 15px; }
.social-icons a { line-height: 0; }
.social-icons a svg { fill: var(--navy); width: 24px; height: 24px; transition: var(--custom-ease); }
.social-icons a:hover svg { fill: var(--orange); transform: scale(1.1); }
/* HEADER END */

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; width: 30px; height: 18px; position: relative; }
.menu-toggle span { position: absolute; width: 100%; height: 2px; background: var(--black); transition: all 0.3s ease; }
.menu-toggle:hover span, .menu-toggle.active span { background: var(--orange);}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 50%; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 50%; bottom: auto; }
.nav-bar-holder { width: 100%; display: flex; align-items: center; justify-content: space-between; }
body.menu-open { overflow: hidden; }
.main-header-area .container { gap: 10px; }
.mobile-login, .mobile-wishlist { display: none; }
@media (max-width:991px) {
	.menu-toggle { display: flex; }
	.nav-bar { position: fixed; top: 110px; left: 0; width: 100%; height: calc(100vh - 110px); overflow-y: auto; background: #eff5ff; z-index: 999; transform: translateX(-100%); transition: transform 0.3s ease; -webkit-overflow-scrolling: touch; }
	.nav-bar.active { transform: translateX(0); }
	.nav-bar-holder { flex-direction: column; align-items: flex-start; padding: 20px 0; gap: 20px; }
	.main-nav { flex-direction: column; gap: 0; width: 100%; }
	.main-nav li { width: 100%; }
	.main-nav li a { display: block; transition: all .3s;}
	.has-children:hover .sub-menu { display: none; }
	.sub-menu { position: static; display: none; box-shadow: none; } 
    .sub-menu li a:hover { background: transparent;   }
	.has-children.active .sub-menu { display: block; background: transparent; padding: 0; }
	.header-actions .action-item:first-child { display: none; }
	.header-actions .btn-orange { display: none; }
	.mobile-login{ display: block; }
	.mobile-wishlist { display: block; width: 100%; }
	.mobile-wishlist a { padding: 12px 0; border-bottom: 1px solid #eee; }
    .showonmobile { display: block; }
}
@media (max-width:575px) {
	.top-bar .container { gap: 5px; }
	.nav-bar { top: 111px; height: calc(100vh - 111px); }
}




footer { background: #f7f7f7; overflow: hidden; }

/* NEW: Social Section (Based on Screenshot) */
.footer-social-cta {
    background-color: var(--bg-pink);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

/* Wavy Divider (Top of screenshot) */
.footer-social-cta::before {
    content: "";
    position: absolute;
    top: -0.5px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0 C150,120 350,0 500,100 C650,200 850,0 1000,100 C1150,200 1200,0 1200,0 L1200,120 L0,120 Z" fill="%23f7f7f7"/></svg>');
    background-size: cover;
    transform: rotate(180deg);
}

.social-title {
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: none;
}

.social-links-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links-wrap a {
    color: var(--dark-blue);
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--custom-ease);
}

.social-links-wrap a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* Original Styles Restored/Improved */
.footer-upper { padding: 50px 0 0; }
.footer-link-list { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.footer-link-item { width: 25%; padding: 0 10px; margin-bottom: 40px; }
.footer-link-box h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark-blue); }
.footer-link-box ul { list-style: none; margin: 0; padding: 0; }
.footer-link-box ul li:not(:last-child) { margin-bottom: 10px; }
.footer-link-box a { color: var(--gray-text); text-decoration: none; transition: var(--custom-ease); }
.footer-link-box a:hover { color: var(--orange); }

.flb-box { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.flb-box input { padding: 12px; width: 100%; border: 1px solid #ddd; border-radius: 5px; outline: none; flex-grow: 1; }
.btn-orange { background: var(--orange); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: 600; }

.footer-middle { overflow: hidden; line-height: 0; }
.footer-full-width-image img { width: 100%; height: auto; display: block; }

.footer-lower { border-top: 1px solid #ddd; padding: 20px 0; background: #fff; }
.footer-bottom { font-size: 14px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-lower-links { list-style: none; margin: 0; padding: 0; display: flex; }
.footer-lower-links li { position: relative; padding: 0 10px; border-right: 1px solid #ccc; }
.footer-lower-links li:last-child { border-right: none; }
.footer-lower-links li a { color: var(--gray-text); text-decoration: none; font-size: 14px; }
.footer-lower-links li a:hover { color: var(--orange);}

@media (max-width:991px) {
    .footer-link-item { width: 50%; }
    .social-links-wrap a { font-size: 24px; }
}
@media (max-width:767px) {
    .footer-link-item { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-lower-links { justify-content: center; margin-top: 10px; }
}


/* ============================================================
   PETFUNDA SHOP PAGE - FULL STYLES
   ============================================================ */

/* 1. Category Navigation (Pills Style) */
.shop-category-nav {
    margin-bottom: 40px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.category-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for clean look but keep functionality */
.category-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}
.category-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

.cat-item {
    text-decoration: none;
    color: var(--black);
    padding: 10px 22px;
    background: #f1f1f1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s var(--custom-ease);
    border: 1px solid transparent;
}

.cat-item:hover, .cat-item.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 10px rgba(14, 42, 111, 0.2);
}

/* 2. WooCommerce Grid Layout */
.woocommerce .products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

/* Clear WooCommerce default floats */
.woocommerce .products.columns-4::before,
.woocommerce .products.columns-4::after {
    display: none !important;
}

/* 3. Product Card Styling */
ul.products li.product {
    width: 100% !important; /* Overriding WC defaults */
    margin: 0 !important;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

ul.products li.product:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #e0e0e0;
}

/* Link wrapper around Image and Title */
ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
}

/* Image styling */
ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* 4. Full Title Styling */
.woocommerce-loop-product__title {
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: var(--black);
    margin: 10px 0 !important;
    padding: 0 !important;
    text-align: left;
    /* Ensuring full title shows */
    overflow: visible !important;
    white-space: normal !important;
    display: block !important;
}

/* 5. Price & Button Alignment */
.price {
    color: var(--navy) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-top: auto !important; /* Pushes price to the bottom */
    margin-bottom: 15px !important;
    display: block;
    text-align: left;
}

.price ins {
    text-decoration: none;
}

/* Button Styling (Always at the bottom) */
ul.products li.product .button {
    background-color: var(--orange) !important;
    color: #fff !important;
    padding: 14px 10px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    text-align: center;
    border: none !important;
    transition: background 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    flex-shrink: 0; /* Prevents button from squishing */
}

ul.products li.product .button:hover {
    background-color: var(--navy) !important;
}

/* 6. Sorting & Result Count Fixes */
.woocommerce-result-count {
    font-size: 14px;
    color: var(--gray-text);
}

.woocommerce-ordering select {
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    background: #fff;
    outline: none;
    color: var(--black);
}

/* 7. Responsive Adjustments */
@media (max-width: 1100px) {
    .woocommerce .products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .woocommerce .products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .container { width: 100%; padding: 0 15px; }
}

@media (max-width: 480px) {
    .woocommerce .products.columns-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .shop-category-nav { margin-top: 10px; }
}


/* Section Spacing */
.py-50 { padding: 80px 0; }

/* Layout */
.pawsome-knowledge .container {
    gap: 50px;
}

.knowledge-image, .knowledge-content {
    flex: 1;
    min-width: 300px;
}

/* Image Styling with Dot Pattern Effect */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.dot-pattern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1; /* Place behind image if needed, or overlay with opacity */
    opacity: 0.5;
}

/* Typography */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--black);
    font-size: 15px;
}

.feature-item svg {
    fill: #ffcce0; /* Soft pink paw color from your screenshot */
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title { font-size: 28px; }
    .pawsome-knowledge .container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .py-50 { padding: 40px 0; }
}

/*  */

/* Order Right */
.woocommerce .woocommerce-orders-table.shop_table { width: 100%; border-collapse: collapse; border-radius: 0; overflow: hidden; border: none; }
.woocommerce .woocommerce-orders-table thead { background: #f5f7fb; }
.woocommerce .woocommerce-orders-table th { text-align: left; padding: 14px 16px !important; font-size: 14px; color: #555; font-weight: 600; }
.woocommerce .woocommerce-orders-table tbody tr { background: #fff; border-bottom: 1px solid #eee; transition: 0.2s ease; }
.woocommerce .woocommerce-orders-table tbody tr:hover { background: #fafafa; }
.woocommerce .woocommerce-orders-table td, .woocommerce .woocommerce-orders-table th[scope="row"] { padding: 14px 10px !important; font-size: 14px; vertical-align: middle; }
.woocommerce .woocommerce-orders-table__cell-order-number a { color: var(--navy); font-weight: 600; font-size: 16px; }
.woocommerce .woocommerce-orders-table__cell-order-number a:hover { color: var(--orange); }
.woocommerce .woocommerce-orders-table__cell-order-status { font-weight: 500; color: #0a7c3b; }
.woocommerce .woocommerce-orders-table__cell-order-total { font-weight: 500; }
.woocommerce .woocommerce-orders-table .button { background: var(--orange) !important; color: var(--white) !important; padding: 10px 20px; border-radius: 25px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.3s var(--custom-ease); }
.woocommerce .woocommerce-orders-table .button:hover { background: var(--navy) !important; }

/* Download */
.woocommerce .woocommerce-info { display: flex; align-items: center; justify-content: space-between; gap: 15px; background: #fff; border: none; padding: 18px 20px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); color: #444; margin-bottom: 0; }
.woocommerce .woocommerce-info::before, .woocommerce .woocommerce-info::after { display: none; }
.woocommerce .woocommerce-info .button { background: var(--orange); color: var(--white); padding: 10px 20px; border-radius: 25px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: background 0.3s var(--custom-ease); }
.woocommerce .woocommerce-info .button:hover { background: var(--navy); color: var(--white); }
@media (max-width:767px) {
	.woocommerce .woocommerce-info { flex-direction: column; gap: 25px; }
}

/* Addresses */
.woocommerce .woocommerce-Addresses { display: flex; gap: 15px; }
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before { display: none; }
.woocommerce .woocommerce-Address { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); border: 1px solid rgb(0 0 0 / 30%); width: 50% !important; }
.woocommerce .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; gap: 5px; }
.woocommerce-account .addresses .title::after, .woocommerce-account .addresses .title::before { display: none; }
.woocommerce .woocommerce-Address-title h2 { font-size: 18px; margin: 0; color: #222; }
.woocommerce .woocommerce-Address-title .edit { font-size: 13px; color: var(--orange); font-weight: 500; text-decoration: none; text-align: end; }
.woocommerce .woocommerce-Address-title .edit:hover { color: var(--navy); }
.woocommerce-MyAccount-content > p { margin-bottom: 20px; font-size: 14px; color: #666; }
@media (max-width:991px) {
	.woocommerce .woocommerce-Addresses { flex-direction: column; gap: 25px; }
	.woocommerce .woocommerce-Address { width: 100% !important; }
}
@media (max-width:767px) {
	.woocommerce .woocommerce-Addresses { flex-direction: column; }
}

/* Account Form */
.woocommerce .form-row { margin-bottom: 15px !important; padding: 0 !important; }
.woocommerce .form-row-wide { width: 100%; }
.woocommerce .clear { clear: both; }
.woocommerce label { display: block; font-size: 14px; margin-bottom: 6px; font-weight: 500; color: #333; }
.woocommerce input.input-text, .woocommerce input[type="email"], .woocommerce input[type="password"] { width: 100%;  padding: 12px 12px !important; border: 1px solid #ddd !important; border-radius: 8px !important; font-size: 16px; transition: 0.2s ease; background: #fff; }
.woocommerce input:focus { border-color: var(--orange); outline: none; box-shadow: none; }
#account_display_name_description { display: block; font-size: 14px; color: #777; margin-top: 5px; }
.woocommerce fieldset { border: 1px solid #eee; padding: 15px 18px; border-radius: 10px; margin-top: 15px; margin-bottom: 15px; }
.woocommerce fieldset legend { font-size: 14px; font-weight: 600; padding: 0 5px; }
.password-input { position: relative; }
.password-input .show-password-input { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; }
.woocommerce .woocommerce-Button.button { background: var(--orange); color: var(--white); padding: 14px 20px; border-radius: 5px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: background 0.3s var(--custom-ease); }
.woocommerce .woocommerce-Button.button:hover { background: var(--navy); color: var(--white); }
@media (max-width:767px) {
	.woocommerce .form-row-first, .woocommerce .form-row-last { width: 100% !important; float: none; }
}

/* Cart */
.wc-block-cart { display: flex; gap: 30px; }
.wc-block-cart__main { flex: 2; padding-right: 0 !important; }
.wc-block-cart__sidebar { flex: 1; }
.wp-block-woocommerce-cart-line-items-block thead { background: #f5f7fb; }
.wp-block-woocommerce-cart-line-items-block thead .wc-block-cart-items__header-product { background: #f5f7fb !important; visibility: visible !important; }
.wc-block-cart-items__row { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); transition: 0.25s ease; }
.wc-block-cart-item__image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.wc-block-cart-item__image a { width: 180px; display: inline-block; height: 100%; position: relative; padding-bottom: 70%; border-radius: 5px; overflow: hidden; }
.wc-block-components-product-name { font-size: 16px !important; }
.wc-block-components-product-metadata { margin-bottom: 10px; }
.wc-block-components-quantity-selector { border-radius: 5px; overflow: hidden; }
.wc-block-components-quantity-selector__input { font-size: 16px !important; }
.wc-block-cart-item__remove-link svg { fill: #888; transition: 0.2s ease; }
.wc-block-cart-item__remove-link:hover svg { fill: red; }
.wc-block-cart__sidebar { background: #fff; padding: 20px !important; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }
.wc-block-cart__totals-title { font-size: 18px; margin-bottom: 15px; }
.wc-block-components-totals-footer-item { font-size: 16px; font-weight: 600; }
@media (max-width:991px) {
	.wc-block-cart { flex-direction: column; }
	.wc-block-cart__main { width: 100% !important; }
	.wc-block-cart__sidebar { width: 100% !important; }
}
@media (max-width:767px) {
	.wc-block-cart-items__row { display: block !important; padding: 15px !important; }
}
@media (max-width:575px) {
	td.wc-block-cart-item__image { display: block !important; padding-right: 0 !important; }
	.wc-block-cart-item__image a { width: 100%; padding-bottom: 100%; }
	td.wc-block-cart-item__product { display: block !important; }
	td.wc-block-cart-item__total { display: block !important; }
}

/* Checkout */


.wc-block-components-text-input input, .wc-blocks-components-select__select, .wc-block-components-combobox-control__input, .wc-block-components-textarea { height: auto !important;   font-size: 14px !important; border: 1px solid #ddd !important; border-radius: 6px !important; background: #fff; }
.wc-block-components-textarea { height: auto; min-height: 90px; }
.wc-block-components-text-input input:focus, .wc-blocks-components-select__select:focus { border-color: var(--orange); outline: none; box-shadow: none; }
.wc-block-components-text-input label, .wc-block-components-checkbox__label, .wc-block-components-radio-control__label { font-size: 14px; font-weight: 500; color: #333; }
.wc-block-components-address-card { border: 1px solid #ddd; border-radius: 8px; padding: 14px; }
.wc-block-components-radio-control__option { border: 1px solid #ddd !important; border-radius: 6px; box-shadow: none !important; }
.wc-block-components-radio-control__option-checked { border-color: var(--orange); }
.wc-block-components-radio-control-accordion-option { border: 1px solid #ddd !important; border-radius: 6px; box-shadow: none !important; }
.wc-block-components-sidebar-layout .wc-block-components-main { padding-right: 30px; width: 60%; }
.wc-block-checkout__sidebar { border: 1px solid #ddd; border-radius: 8px; padding: 5px; width: 40%; }
.wp-block-woocommerce-checkout-order-summary-block { border: none; }
.wc-block-components-totals-item, .wc-block-components-order-summary-item { font-size: 14px; }
.wc-block-components-order-summary .wc-block-components-order-summary-item__description { padding: 4px 12px 12px 15px; }
.wc-block-components-order-summary .wc-block-components-order-summary-item__image { width: 60px; flex-shrink: 0; }
.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img { width: 60px; height: 60px; object-fit: cover; max-width: 60px !important; }
.wc-block-components-checkout-place-order-button { padding: 12px 20px; font-size: 14px; border-radius: 6px; }



@media (max-width:767px) { 
    .wc-block-components-sidebar-layout .wc-block-components-main { padding-right: 0; width: 100%; }
    .wc-block-checkout__sidebar { width: 100%; margin-top: 30px; }
    .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title { padding: 20px; border: none; margin-top: 0;}


.wc-block-components-order-summary { padding: 0 15px; }
.wc-block-components-totals-coupon { padding: 0 15px; }
.wp-block-woocommerce-checkout-order-summary-subtotal-block { padding: 8px 15px; }
.wc-block-components-totals-item { padding: 0 0 !important; }
.wc-block-components-totals-shipping { padding: 0 15px; }
.wc-block-components-totals-item.wc-block-components-totals-footer-item { padding: 0 15px !important; }
}
@media (max-width:575px) { 
}