/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1.2
*/

/* =================== Theme Variables =========================== */

/* Default/Supermarket theme - Base: #296d38 */
:root,
body.blogid-1,
body.site-id-1,
body[data-store-type="supermarket"],
body.store-type-supermarket {
    --primary-gradient-start: #1e5a2e;
    --primary-gradient-end: #296d38;
    --accent-color: #4ade80;
    --accent-secondary: #22c55e;
    --accent-tertiary: #16a34a;
    --text-light: #d1fae5;
}

/* Department Store theme - Base: #004362 */
body[data-store-type="departmentstore"],
body.store-type-departmentstore {
    --primary-gradient-start: #002a3d;
    --primary-gradient-end: #004362;
    --accent-color: #38bdf8;
    --accent-secondary: #0ea5e9;
    --accent-tertiary: #0284c7;
    --text-light: #dbeafe;
}

/*************** ADD CUSTOM CSS HERE.   ***************/

#customer_login input[type="email"], 
#customer_login input[type="text"], 
#customer_login input[type="password"] {
    border-radius: 6px;
    box-shadow: none;
}

.header-search-form .searchform .search_categories {
    min-width: 200px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

#login-form-popup,
#login-form-popup-checkout {
    border-radius: 10px;
    max-width: 560px;
}

#customer_login .social-login--or {
    display: block;
    height: 10px;
    border-bottom: solid 1px #ddd;
    margin: 25px 0 30px;
    text-align: center;
}

#customer_login .social-login--or > span {
    display: inline-block;
    background-color: #fff;
    padding: 0 10px;
}


#customer_login .woocommerce-button.button {
    background-color: #40C804;
    border-radius: 10px !important;
    padding: .25em 1.2em;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
}

#customer_login .woocommerce-LostPassword.lost_password { text-align: center; }

/*center coupon notice message*/
.woocommerce-form-coupon-toggle { text-align: center; }

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

@media (max-width: 549px) {
  .container .message-container {
    font-size: 13px !important;
  }
}

    .header-search-form .searchform .search_categories { min-width: 80px; }

}
/*woo-message*/
.woocommerce-message{
	background: #EAF7EE !important;
   	padding: 8px 8px;
    border-radius: 10px;
	margin-bottom: 10px;
}

.woocommerce-error{
	background: #FCEDE9 !important;
	padding: 8px 16px;
    margin-bottom: 10px;
    border-radius: 10px;
}

/*Registration confirmation message*/
#wrapper>.message-wrapper{
    padding-top: .5em;
    padding-bottom: .5em;
    margin-bottom: 0px;
}

/*Coupon Toggle*/
.woocommerce-form-coupon-toggle {
    text-align: center;
    background: #50d182;
    color: #fff;
    border-radius: 10px;
    padding-top: 8px;
    margin-bottom: 10px;
}

/*sales badge*/
.badge-inner.on-sale{
	border-radius: 5px;
}
.badge{
	height: 1.8em;
}
/*--end sales badge--*/


/* ================================================
   WP Factory Wishlist - Modern Tab Styling
   ================================================ */

/* Tab Container */
.alg-wc-wl-tab {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Column wrapper */
.alg-wc-wl-tab .col-20per {
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tab Buttons */
.alg-wc-wl-tablink {
  width: 100%;
  padding: 14px 24px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

/* Hover effect overlay */
.alg-wc-wl-tablink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-gradient-end) 0%, var(--primary-gradient-start) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 0;
}

/* Button text on top of overlay */
.alg-wc-wl-tablink {
  position: relative;
  z-index: 1;
}

/* Hover state */
.alg-wc-wl-tablink:hover {
  color: #334155;
  transform: translateY(-2px);
  background: rgba(100, 116, 139, 0.05);
}

/* Active tab */
.alg-wc-wl-tablink.active {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--primary-gradient-end) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb, 146, 234, 102), 0.3);
  transform: translateY(0);
}

.alg-wc-wl-tablink.active::before {
  display: none;
}

.alg-wc-wl-tablink.active:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--accent-color-rgb, 102, 234, 111), 0.4);
  color: #fff;
}

/* Click/Active state */
.alg-wc-wl-tablink:active {
  transform: translateY(0) scale(0.98);
}

/* Focus state for accessibility */
.alg-wc-wl-tablink:focus {
  outline: 2px solid var(--accent-secondary);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .alg-wc-wl-tab {
    gap: 8px;
    padding: 6px;
  }
  
  .alg-wc-wl-tablink {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .alg-wc-wl-tab {
    flex-direction: column;
    gap: 8px;
  }
  
  .alg-wc-wl-tablink {
    padding: 14px 20px;
  }
} 
/* =====================end Wishlist Tab Style ==================== */


/* ============  Wishlist Modal ================= */

.algwcwishlistmodal.is-open {
    border-radius: 10px;
}

/*************** FLATSOME COOKIES / POPUP ***************/

.flatsome-cookies {
    width: fit-content;
    border-radius: 10px;
    margin: auto;
    right: 0;
    left: 0;
    font-size: 72%;
}

.flatsome-cookies--active {
   margin-bottom:20px;
}

.flatsome-cookies__buttons>a {
    margin-right: 0px;
}

/*image radius*/
.img-radius .fill, .img-radius .box-image{
	border-radius: 10px;
}

/*mobile icons for cart and my account*/
/*cart and my account icon padding*/
.nav>li{
	margin: 0 10px;
}

/*Repeat Order on My Orders Account*/
.woocommerce-button.button.ced_my_account_reorder {
    padding: 0px 5px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.woocommerce-pagination{
	float: right;	
}

.wishlist_table.mobile{
	margin-right: 26px;
}

.pi_cancel_request_form{
	line-height: inherit;
    margin-top: 12px;
}

/*mobile my account page*/
@media (max-width: 480px){
	#my-account-menu .myaccount-menu{
    padding-right: 20px;
}
}

	/*toggle > on mobile menu*/
.toggle i{
	font-size: 1.2em;
}

.woocommerce-form-login .button{
	width: 100%;
}

.flatsome-cookies{
	z-index: 9999 !important;
}

/*Custom Shopping List Header Menu Supermarket*/
.header-shoppinglist-icon a{
	color: #fff;
	line-height: 16px;
	font-weight: 500;
	font-size: 1.3em;
	font-family: "DM Sans", sans-serif;
}

.header-shoppinglist-icon a:hover{
	color: #638c28;
}

/*Custom Shopping List Header Menu Department Store*/
.header-shoppinglist-deptstore a{
	color: #fff;
	line-height: 16px;
	font-weight: 500;
	font-size: 1.3em;
	font-family: "DM Sans", sans-serif;
}

.header-shoppinglist-deptstore a:hover{
	color: #5fa2bf;
}

/*My account link navigition*/
/* .woocommerce-MyAccount-content .dashboard-links {
display:none;
} */

/*Text on my account dashboard*/
.icon-text-lowercase h5{
     text-transform: none;
}

/*order history page*/
.woocommerce-orders-table td {
	white-space: nowrap;
}

.view{
	margin: 0 20px;
}


/*mobile menu product categories*/
.nav-sidebar.nav-vertical>li+li {
    border-top: none;
}

.mobile-menu a{
	margin-left: 25px !important;
}

.mobile-sidebar-levels-2 .nav-slide>li>.sub-menu>li:not(.nav-slide-header), .mobile-sidebar-levels-2 .nav-slide>li>ul.children>li:not(.nav-slide-header){
	border-top: none !important;
}

/*.off-canvas-left .mfp-content, .off-canvas-right .mfp-content{
	width: 280px !important;
}*/

/*title border*/
.section-title-normal span {
	border-bottom: none;
}

/*header title divider*/
.section-title-normal{
border-bottom: 1px solid #ececec;
}


/*image box top radius*/
.top-img-radius .box-image{
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.image-radius .img-inner{
	border-radius: 1em;
}

/*product categories img radius*/
.prodcat-img-radius .col-inner, .prodcat-img-radius .box-image{
	border-radius: 1em;
}

/*vertical menu*/
.header-vertical-menu__opener{
	font-weight: 500 !important;
	font-size: 16px !important;
	color: #fff !important;
}

.header-vertical-menu .icon-angle-down{
	display: none;
}

.header-vertical-menu__opener, .header-vertical-menu__fly-out{
	   width: max-content;
}

.nav-left{
	flex-flow: inherit;
}

/*My Account dashboard text*/
.icon-text-lowercase h5{
	text-transform: none;
}

.woocommerce-privacy-policy-text{
    font-size: small !important;
}

.form-row-remember-forgot {
    display: flex;
    justify-content: space-between;
}

.form-row-remember-forgot .woocommerce-form__label-for-checkbox,
.form-row-remember-forgot .forgot-password-link {
    display: inline-flex;
}


/* Inherent style for Remember Me */
.woocommerce-form__label-for-checkbox {
    font-weight: bold; /* Make the label bold */
    color: #333; /* Example color for Remember Me text, can be adjusted */
}

/* Forgot Password link style */
.forgot-password-link a {
    color: #0073aa;; 
    text-decoration: none; /* Remove underline if desired */
    font-size: .80em;
    font-weight: 500;
}

.forgot-password-link a:hover{
    text-decoration: underline; /* Optional: add underline on hover */
}

#customer_login_signup, #customer_login_login{
	color: #0073aa; /* Set text color to red */
	text-decoration: none;
}

#customer_login_signup:hover, #customer_login_login:hover {
    text-decoration: underline; /* Optional: add underline on hover */
}

/*Welcome To ShopMetro*/
.welcome-container {
    padding: 20px;
    margin: 0 auto;
}

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

.welcome-title {
    font-size: 2rem; /* Base size */
    margin-bottom: 10px;
}

/* Responsive Styles for h2 */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 1.8rem; /* Smaller size on medium screens */
    }
}

.woocommerce {
   line-height: 1.1;
}

.language-switcher{
	display: none;
}

/* ================ My Account Page ================ */

/* Hide Account Navigation Title */
.normal-title {
	display: none;
}

/* Hide My Account left sidebar */
.woocommerce-account .page-wrapper .row.vertical-tabs > .large-3.col.col-border {
    display: none;
}

/* Make the main content full width */
.woocommerce-account .page-wrapper .row.vertical-tabs > .large-9.col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

/* Disable uppercase text in WCMp My Account menu */
.woocommerce-account .wcmp-myaccount-template-inner,
.woocommerce-account .wcmp-myaccount-template-inner a,
.woocommerce-account .wcmp-myaccount-template-inner span {
    text-transform: none !important;
}

/*Hide Account menu items in Mobile*/
@media (max-width: 480px) {
    .woocommerce-account #my-account-menu {
        display: none;
    }
}

.wcmp-popup-content  {
    padding: 10px;
}

/***** End Account Page ****/

/* Metro Order Guide Styles */
.metro-order-guide-container {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.metro-order-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.metro-order-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
	  color: #fff;
}

.metro-order-header p {
    font-size: 1.1em;
    opacity: 0.95;
}

.metro-order-content {
    padding: 50px 40px;
}

.metro-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.metro-step:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    border-left-color: #667eea;
    background: #f0f2ff;
}

.metro-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.metro-step-content {
    flex: 1;
    padding-top: 5px;
}

.metro-step-content p {
    color: #2d3748;
    line-height: 1.7;
    font-size: 1.05em;
    margin: 0;
}

.metro-highlight {
    color: #667eea;
    font-weight: 600;
}

.metro-order-footer {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-top: 3px solid #667eea;
}

.metro-order-footer p {
    color: #4a5568;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.metro-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.metro-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .metro-order-header h1 {
        font-size: 2em;
    }

    .metro-order-content {
        padding: 30px 20px;
    }

    .metro-step {
        padding: 20px;
        gap: 15px;
    }

    .metro-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }

    .metro-step-content p {
        font-size: 1em;
    }
}
/*Metro Order Guide Styles end*/

/* FAQ Specific Styles */
.metro-faq-item {
    margin-bottom: 35px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.metro-faq-item:hover {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    background: #f0f2ff;
}

.metro-faq-question {
    color: #667eea;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.metro-faq-answer {
    color: #2d3748;
    line-height: 1.7;
}

.metro-faq-answer p {
    margin-bottom: 15px;
}

.metro-faq-answer p:last-child {
    margin-bottom: 0;
}

.metro-faq-list {
    margin: 15px 0 15px 25px;
    color: #2d3748;
}

.metro-faq-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.metro-scenario-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.metro-scenario-link {
    display: block;
    padding: 15px 20px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 10px;
    color: #667eea !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.metro-scenario-link:hover {
    background: #667eea;
    color: white !important;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.metro-scenario {
    background: linear-gradient(135deg, #f0f2ff 0%, #faf5ff 100%);
    border-left-color: #764ba2;
}

.metro-note {
    background: #fff4e6;
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 0.95em;
    line-height: 1.6;
}

.metro-note strong {
    color: #ff9800;
    font-weight: 700;
}

.metro-inline-link {
    color: #667eea !important;
    text-decoration: underline;
    font-weight: 600;
}

.metro-inline-link:hover {
    color: #764ba2 !important;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .metro-faq-item {
        padding: 20px;
    }

    .metro-faq-question {
        font-size: 1.2em;
    }

    .metro-scenario-link {
        padding: 12px 15px;
        font-size: 0.95em;
    }
}
/*FAQ Specific Styles end*/

/* Terms and Conditions Styles */
.metro-terms-section {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.metro-terms-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    border-left-color: #667eea;
    background: #f0f2ff;
}

.metro-terms-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.metro-terms-content {
    flex: 1;
}

.metro-terms-title {
    color: #667eea;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.metro-terms-content p {
    color: #2d3748;
    line-height: 1.8;
    font-size: 1.05em;
    margin: 0;
}

.metro-terms-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.metro-terms-notice p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.metro-terms-notice strong {
    font-weight: 700;
}

/* Mobile Responsive for Terms */
@media (max-width: 768px) {
    .metro-terms-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .metro-terms-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .metro-terms-title {
        font-size: 1.2em;
        text-align: center;
    }

    .metro-terms-content p {
        font-size: 1em;
    }

    .metro-terms-notice {
        padding: 20px;
    }

    .metro-terms-notice p {
        font-size: 1em;
    }
}
/*Terms and Conditions Styles end*/

/* Full Terms and Conditions Styles */
.metro-tc-intro {
    background: linear-gradient(135deg, #f0f2ff 0%, #faf5ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 4px solid #667eea;
}

.metro-tc-intro p {
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.metro-tc-intro p:last-of-type {
    margin-bottom: 10px;
}

.metro-tc-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.metro-tc-section-title {
    color: #667eea;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.metro-tc-subsection {
    margin-bottom: 25px;
}

.metro-tc-subtitle {
    color: #764ba2;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}

.metro-tc-option {
    margin-bottom: 25px;
    padding-left: 20px;
}

.metro-tc-option-title {
    color: #2d3748;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 12px;
}

.metro-tc-ordered-list {
    margin: 15px 0 15px 30px;
    color: #2d3748;
}

.metro-tc-ordered-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 10px;
}

.metro-tc-section p {
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.metro-warning-box {
    background: #fff4e6;
    border-left: 4px solid #ff9800;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 1em;
    line-height: 1.7;
}

.metro-warning-box strong {
    color: #ff9800;
    font-weight: 700;
}

/* Mobile Responsive for Full Terms */
@media (max-width: 768px) {
    .metro-tc-intro {
        padding: 20px;
    }

    .metro-tc-section {
        padding: 20px;
    }

    .metro-tc-section-title {
        font-size: 1.3em;
    }

    .metro-tc-subtitle {
        font-size: 1.15em;
    }

    .metro-tc-option {
        padding-left: 10px;
    }

    .metro-tc-ordered-list {
        margin-left: 20px;
    }

    .metro-tc-ordered-list li {
        font-size: 0.95em;
    }
}
/*End Terms and Condition*/

/* Annexes Section Styles */
.metro-annex-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.metro-annex-title {
    color: #667eea;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
}

.metro-annex-image-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #cbd5e0;
    position: relative;
}

.metro-annex-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metro-annex-placeholder {
    color: #a0aec0;
    font-style: italic;
    margin-top: 10px;
    font-size: 0.95em;
}

/* Hide placeholder when image is loaded */
.metro-annex-image[src*="http"] ~ .metro-annex-placeholder {
    display: none;
}

/* Delivery Rates Styles */
.metro-delivery-rates {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.metro-rate-info {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.metro-rate-info svg {
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.metro-rate-text {
    flex: 1;
}

.metro-rate-label {
    font-size: 1em;
    opacity: 0.95;
    margin-bottom: 8px;
    font-weight: 500;
}

.metro-rate-amount {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.metro-rate-note {
    font-size: 0.9em;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

/* Mobile Responsive for Annexes */
@media (max-width: 768px) {
    .metro-annex-item {
        padding: 20px;
    }

    .metro-annex-title {
        font-size: 1.15em;
    }

    .metro-annex-image {
        max-height: 400px;
    }

    .metro-delivery-rates {
        padding: 30px 20px;
    }

    .metro-rate-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .metro-rate-amount {
        font-size: 2em;
    }

    .metro-rate-note {
        font-size: 0.85em;
    }
}
/*End Annexes Section Styles */

/* Privacy Notice Image Wrap Style - Thumbnail Version */
.metro-privacy-image-wrap {
    float: right;
    max-width: 120px;
    width: 100%;
    height: auto;
    margin: 0 0 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.metro-privacy-image-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: 3px solid #667eea;
}

/* Mobile Responsive for Privacy Image */
@media (max-width: 768px) {
    .metro-privacy-image-wrap {
        float: none;
        max-width: 40%;
        margin: 0 0 20px 0;
        display: block;
    }
}
/*End Privacy Notice*/

/*** Mobile Menu Product Categories Sidebar *****/
.nav-sidebar.nav-vertical>li+li {
    border-top: none;
}

.mobile-menu a{
	margin-left: 25px !important;
}

.mobile-sidebar-levels-2 .nav-slide>li>.sub-menu>li:not(.nav-slide-header), .mobile-sidebar-levels-2 .nav-slide>li>ul.children>li:not(.nav-slide-header){
	border-top: none !important;
}

/*image box top radius*/
.top-img-radius .box-image{
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.image-radius .img-inner, .banner .image-radius .banner-inner fill{
	border-radius: 1em;
}

.banner{
	background: #fff;
}

.img-radius .fill, .img-radius .box-image{
	border-radius: 1em;
}

/*product categories img radius*/
.prodcat-img-radius .col-inner, .prodcat-img-radius .box-image{
	border-radius: 10px;
}

/*vertical menu*/
.header-vertical-menu__opener{
	font-weight: 600 !important;
	font-size: 18px !important;
	color: #1f1f1f !important;
}

.header-vertical-menu .icon-angle-down{
	display: none;
}

.header-vertical-menu__opener, .header-vertical-menu__fly-out{
	   width: max-content;
}

.nav-left{
	flex-flow: inherit;
}

/*delete account*/
#acct-delete-radio{
	display: grid;
	font-size: 16px;
	color: #13131a;
	font-weight: 500 !important;
}

#acct-delete-radio label{
	font-weight: 500 !important;
}

/*breadcrumbs*/
.woocommerce-ordering, .woocommerce-result-count{
	font-size: small;
}

/* Chatty */
/*floating button*/
.chaty-i-trigger .chaty-channel{
	top: -100px;
	right: 0px;
}

.chaty-widget{
	z-index: 0 !important;
}

/*Social icon footer*/
.button i, button i {
    top: 0.5px;
    vertical-align: middle;
}

/*Social icon footer*/
.button i, button i {
    top: -0.5px;
    vertical-align: middle;
}

.button.icon i {
    font-size: 1.3em;
}

@media (min-width: 767px) {
	.about-us{
		width: 90%;
	}
}
/* end chatty */

/* Product Title Ellipsis */
.title-wrapper {
    display: block;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    position: relative;
    z-index: 1; 
}

.name.product-title.woocommerce-loop-product__title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.2em;
    max-height: 3.6em; 
    position: relative;
}

@media (max-width: 768px) {
.name.product-title.woocommerce-loop-product__title a {
        max-width: 90%;
        -webkit-line-clamp: 2; 
        line-height: 1.25em;
        max-height: 2.4em; 
    }
}
/* end product title ellipsis*/

/* Banner Radius*/
.banner-bg{
	border-radius: 10px;
}
/*product content slider*/
.fill-color .product-small.box {
	background: #ffffff;
	padding: 0 8px;
	border-radius:0.5em;
}


/* =================== Footer CSS =========================== */

.absolute-footer{
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary), var(--accent-tertiary), var(--accent-secondary), var(--accent-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* First Row - 6 Columns */
.footer-row-1 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Second Row - 3 Columns */
.footer-row-2 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Third Row - Copyright Only */
.footer-row-3 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }
.footer-section:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--text-light);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-section ul li:hover {
    padding-left: 8px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
    font-weight: bold;
}

.footer-section ul li:hover a::before {
    left: -20px;
    opacity: 1;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Metro Pabili Footer Section */

.contact-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-number::before {
    content: '📞';
    font-size: 1.5rem;
}

.store-info a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.store-info a::before {
    content: '🛒';
    font-size: 1.5rem;
}

.store-info a:hover {
    color: var(--text-light); 
    text-decoration: none;       
    cursor: pointer;             
}


/* DPO Badge */
.dpo-badge {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.dpo-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.dpo-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* App Downloads */
.app-downloads {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-link:hover {
    transform: translateY(-3px);
}

.app-store-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer Row 3 - Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icons a.facebook:hover { color: #1877F2; }
.social-icons a.instagram:hover { color: #E4405F; }
.social-icons a.twitter:hover { color: #1DA1F2; }

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-row-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-row-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-row-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-row-3 {
        text-align: center;
    }

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

    .social-icons {
        justify-content: center;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .footer-row-1 {
        grid-template-columns: 1fr;
    }
    
    .contact-number {
        font-size: 1.1rem;
    }

    .dpo-badge {
        padding: 0.5rem;
        margin-top: 0;
    }

    .dpo-image {
        max-width: 90px;
    }
}
/* ================ End Footer CSS ====================== */

/* ================ Advance Woo Search ====================== */
/*For other stylings you can find in : Customize> style>custom css*/

@media screen and (max-width: 1024px) {
  .aws-container .aws-search-field {
    font-size: 0.8rem;
  }
}

.aws-container .aws-search-field {
 padding-left: 15px !important;
}

/* Mobile + Tablet search layout fix */
@media (max-width: 849px) {

  #wide-nav .flex-col.show-for-medium {
    min-width: 0;
    flex: 1 1 auto;
  }

  #wide-nav .header-bottom-nav.mobile-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 5px;
  }

  #wide-nav .header-search-form {
    flex: 1 1 auto;
    min-width: 0;
  }

  #wide-nav .aws-container,
  #wide-nav .aws-wrapper,
  #wide-nav .aws-search-field {
    min-width: 0;
    width: 100%;
  }
}
/* Results Cart Styling */
body.blogid-1 .aws-search-result .aws_add_to_cart .aws_cart_button,
body.blogid-1 .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change,

body[data-store-type] .aws-search-result .aws_add_to_cart .aws_cart_button,
body[data-store-type] .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change,
body[class*="store-type-"] .aws-search-result .aws_add_to_cart .aws_cart_button,
body[class*="store-type-"] .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change {
    background-color: var(--primary-gradient-end) !important;
    color: #fff;
}

body.blogid-1 .aws-search-result .aws_add_to_cart .aws_cart_button:hover,
body.blogid-1 .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change:hover,

body[data-store-type] .aws-search-result .aws_add_to_cart .aws_cart_button:hover,
body[data-store-type] .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change:hover,
body[class*="store-type-"] .aws-search-result .aws_add_to_cart .aws_cart_button:hover,
body[class*="store-type-"] .aws-search-result .aws_add_to_cart .added_to_cart_quantity_change:hover {
    background-color: var(--primary-gradient-start) !important;
    color: #fff;
}
/* ======================== End Advance WooSearch ======================== */


/* =====================  Vertical Menu =============================*/
/*Categories*/
.header-vertical-menu__title, .header-vertical-menu__fly-out .nav-vertical-fly-out>li.menu-item>a {
    color: var(--primary-gradient-end);
    font-size: .8em;
    font-weight: bolder;
}

.header-vertical-menu__title:hover,
.header-vertical-menu__fly-out .nav-vertical-fly-out > li.menu-item > a:hover {
    color: var(--accent-secondary);
}

/*secondary menu*/
.nav > li > a, .mobile-sidebar-levels-2 .nav > li > ul > li > a{
    font-weight: bolder !important;
}

/* ================== Add to Cart Mobile =======================*/
/* Small screens */
@media (max-width: 388px) {
    .add-to-cart-button a.button {
        padding: 0px 10px;
        font-size: 11px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .add-to-cart-button a.button {
        padding: 0px 10px;
        font-size: 11px;
    }
}


/* ================== Add to Cart button full width on shop & archive pages  =======================*/
.woocommerce-loop-product__link + .button,
.product-small .add_to_cart_button {
    width: 100%;
    display: block;
    text-align: center;
}

.product-small:hover .add_to_cart_button {
    width: 100%;
}


/* ================== MRC Glass Effect  =======================*/

/* Glass effect for MRC UX blocks */
.mrc-glass-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* ===========================  EGC CSS ============================== */



/*image radius*/
 .img-radius img{
	border-radius: 20px;
}

/*font-color*/
.icon-box-text .font-color{
	color: #0b1623 !important;
}

/*Deliery info title*/
.woocommerce-variation-add-to-cart>*, form.cart>*{
 margin-top:30px;	
}

/*footer*/
.dark .widget a:hover, .dark a:hover{
	color: #334862 !important;
}
.ywgc-message{
	margin-top:50px;
}

/*My Account Dashboard*/
.icon-text-lowercase h5{
	text-transform: none;
}

.my-acct-display-name, .my-acct-content{
	display: none;
}

.yith-wcmap .user-profile .user-info .user-email{
    display: none !important;
}

.my-acct-mobile .icon-box {
    display: flex;
    align-items: flex-start; /* Align the entire box to the left */
    text-align: left; /* Ensures the content aligns left */
}

.my-acct-mobile .icon-box-img {
    position: relative; /* Allows positioning of text over the image */
    width: 26px; /* Maintain the specified width */
}

.my-acct-mobile .icon-box-img .icon-inner {
    position: relative;
    width: 100%; /* Matches the size of the image */
}

.my-acct-mobile .icon-box-text {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%); /* Centers the text in the image */
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%; /* Ensures the text stays within the bounds of the image */
    font-size: 12px; /* Adjust size for better fit */
}

/* My Account Dashboard - remove dashboard menu on tablet and mobile */
@media (max-width: 1024px) {
  #my-account-menu .myaccount-menu, #my-account-menu {
    display: none;
  }
	
	#my-account-menu~.woocommerce-MyAccount-content{
		width: 100%;
	}
	
		.my-acct-display-name {
        display: block; /* Show only on tablet and mobile */
    }	
}
/* my-account end */

/*displapy none*/
.order-delivery-date, .absolute-footer{
	display: none;
}

/*mobile break point*/
@media (max-width: 768px) {
	.dpo-img{
				margin-left: -20px;
		
	}
	.box-image{
		width: 80% !important;
	}
}

#mrc_card_number_field .optional{
    display: none;
}

/* ================== Metro Pabili Page  =======================*/
.store-section {
    background: #f9f9f9;
    padding: 40px 20px;
  }

  .store-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }

  /* Grid layout for desktop/tablet */
  .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .store-card {
    background: #fff;
    border: 1px solid #ccc;
    border-left: 6px solid #296d38;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
  }

  .store-card h3 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #004362;
  }

  .store-card a {
    color: #296d38;
    text-decoration: none;
  }

  .store-card p {
    margin: 0 0 8px;
    line-height: 1.5;
  }

  .shop-link {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #004362;
  }

  .shop-link a {
    color: #004362;
    text-decoration: underline;
  }

  /* Accordion layout for mobile */
  .store-accordion {
    display: none;
    font-size: 14px;
  }

  .store-accordion details {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  .store-accordion summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #004362;
    list-style: none;
    position: relative;
    padding-right: 20px;
  }

  .store-accordion summary::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    font-size: 18px;
  }

  .store-accordion details[open] summary::after {
    content: "−";
  }

  .store-accordion details p {
    margin: 8px 0;
    line-height: 1.4;
  }

  .store-accordion .shop-link {
    margin-top: 6px;
    font-size: 14px;
    font-weight: bold;
  }

  .store-accordion .shop-link a {
    color: #004362;
    text-decoration: underline;
  }

  /* Responsive rules */
  @media screen and (max-width: 768px) {
    .store-grid {
      display: none;
    }

    .store-accordion {
      display: block;
    }

    .store-title {
      font-size: 20px;
    }
  }

/* Lazy Load */
img.lazyload,
img.lazyloading {
  filter: blur(8px);
  transform: scale(1.05);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #e8e0d8;
  will-change: filter, transform;
}

img.lazyloaded {
  filter: blur(0px);
  transform: scale(1);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevent bleed from scale */
.product-image, figure, .ux-img {
  overflow: hidden;
}