/* Theme Name: Dev By Mrigank Theme
Description: Custom built for Tidy Team Clean
Author: Mrigank
Version: 1.0
*/

/* =========================================================================
==========================Global Variables Begins =============================== */
:root {

    --primary-blue: #0093ff;      
    --hover-blue: #0077ce;        
    --secondary-dark-blue: #002e5b; 
    --hero-box-bg: rgba(0, 46, 91, 0.85); 
    --white: #ffffff;
    --text-dark: #333333;
    --font-poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-poppins);
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

.container-1440 {
    max-width: 1440px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* =========================================================================
==========================Global Variables Ends =============================== */

/* =========================================================================
========================== HEADER SECTION BEGINS ====================== */

/* 1. Header Wrapper (Transparent Over Video) */
.main-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent; 
    /*padding: 5px 0;*/
    transition: all 0.3s ease;
}

.navbar-brand-wrap{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand img {
    height: 70px; 
    width: auto;
    display: block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link {
    color: var(--white) ;
    font-weight: 600 ;
    font-size: 16px;
    padding: 10px 18px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0 !important;
        transform: translateY(0);
    }
    
    .nav-item.dropdown .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.3s ease-in-out;
    }
}

/* 5. Dropdown Menu Styling */
.dropdown-menu {
    background-color: var(--primary-blue) !important; 
    border: none !important;
    border-radius: 4px !important;
    min-width: 240px !important; 
    padding: 10px 0 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
}

.dropdown-item {
    color: var(--white) !important;
    padding: 12px 25px !important;
    font-size: 16px;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-item:hover {
    background-color: var(--hover-blue) !important;
    padding-left: 35px !important; /* Premium slide effect */
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* 6. Action Group (Call Button, User & Cart) */
.header-action-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Call Button */
.btn-primary-call {
    background-color: #0093ff!important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-call:hover {
    background-color: var(--hover-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 147, 255, 0.4);
}

/* User & Cart Icons with Background Box */
.header-icon-btn {
    background: var(--primary-logo-blue);
    color: #fff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
}

.header-user-icon, 
.header-cart-icon {
    color: #ffffff; 
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.header-user-wrap, .header-cart-wrap{
    background-color:#0093ff;
    border-radius:8px;
}

.header-user-icon:hover, 
.header-cart-icon:hover {
    background-color: var(--hover-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 147, 255, 0.3);
}

/* Cart Badge Count */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3b3b !important; 
    color: var(--white) !important;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    border: 2px solid var(--white);
}
.header-icons-wrap {
    display: flex;
    gap: 10px;
}
.header-action-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hero-section .container-1440 {
    z-index: 1; 
}

/* 7. Mobile Responsive Settings */
@media (max-width: 991px) {
    .main-header {
        background: var(--white) !important; 
        position: relative !important;
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 55px !important;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        border-bottom: 1px solid #f5f5f5;
        padding: 12px 0 !important;
    }

    .header-action-group {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-primary-call {
        width: 100%;
        text-align: center;
    }
}

/* Force Offcanvas to appear when 'show' class is added */
.offcanvas.show {
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
}

/* Ensure Toggle Icon is Visible */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 147, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =========================================================================
========================== FULL HEADER SECTION ENDS ======================== */

/* ============================================================================================== 
=====================================Footer Section Begins ======================================= */
/* ====== Footer Section ====== */
/* Footer Design Alignment */
.main-footer .widget-title {
    font-size: 20px;
    position: relative;
}

.main-footer .footer-links li a:hover, 
.main-footer .contact-info li a:hover {
    color: #00d4ff !important; /* Halka blue on hover */
}

.main-footer .form-control {
    border-radius: 4px;
}

.main-footer .btn-primary {
    border-radius: 4px;
    padding: 10px;
    text-transform: uppercase;
}

.footer-bottom p {
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-footer { padding-top: 40px; }
    .footer-top-wrap { text-align: center; }
    .newsletter-form { max-width: 300px; margin: 0 auto; }
}
/* ============================================================================================== 
=====================================Footer Section Ends ======================================= */
/* ============================================================================================== 
===================================== Front Page Sections Begins ================================= */

/* ====== Hero Section (Video & Overlay) ====== */
.hero-section {
    position: relative;
    height: 750px; /* Thoda height badhaya hai professional impact ke liye */
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 100px !important;
    z-index: 1 !important;
    background-color: #000; /* Video load hone se pehle black fallback */
}

#heroVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1; 
    opacity: 0.8; /* Video ko halka dark rakha taaki text chamke */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for better text readability */
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%); 
    z-index: 0;
}

.hero-section .container-1440 {
    z-index: 2; /* Content overlay se upar rahega */
    position: relative;
}

/* ====== Banner Content Box (Sudhara Hua) ====== */
.hero-content-box {
    /* Logo Blue Gradient with Glass Effect */
    background: linear-gradient(135deg, rgba(0, 46, 91, 0.85) 0%, rgba(0, 147, 255, 0.65) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    padding: 60px !important; /* Spacing thodi aur badhayi professional look ke liye */
    border-radius: 4px; /* Sharp agency look, jyada round nahi */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Halka glass border */
    
    /* Border-left hata diya gaya hai jaisa aapne manga tha */
    border-left: none !important; 
    
    max-width: 650px; 
    width: 100%;
    margin-left: 0; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
    text-transform: capitalize;
}

/* ====== Welcome Section ====== */
.welcome-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    color: var(--secondary-dark-blue);
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 25px;
}

.welcome-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Call Us Card (Right Side) */
.call-us-card {
    background: var(--primary-blue);
    color: #fff;
    padding: 70px 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 147, 255, 0.2);
}

.call-us-card h3 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.call-number {
    display: inline-block;
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 4px; /* Squared professional look */
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.call-number:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ====== Why Choose Us Section ====== */
.why-choose-section {
    padding: 80px 0;
    background: #f9fbfd; /* Clean blue-ish white background */
}

.service-icon-box {
    padding: 40px 25px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
    text-align: center;
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}

.service-icon-box img {
    height: 75px;
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-icon-box h4 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-dark-blue);
}

.service-icon-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.btn-blue-lg {
    background: var(--primary-blue);
    color: #fff !important;
    padding: 20px 45px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    margin-top: 40px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-blue-lg:hover {
    background: var(--hover-blue);
    box-shadow: 0 8px 20px rgba(0, 147, 255, 0.3);
}

/* ====== Media Queries (Mobile Fixes) ====== */
@media (max-width: 991px) {
    /* ====== 1. Transparent Header (Force Transparent) ====== */
    .main-header {
        position: absolute !important; 
        background: transparent !important; /* White box remove */
        border: none !important;
        box-shadow: none !important;
        width: 100%;
        z-index: 1000;
        padding: 10px 0 !important;
    }

    /* ====== 2. Flex Container Alignment ====== */
    .header-nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    /* ====== 3. Logo Size mobile ====== */
    .navbar-brand img {
        height: 50px !important; /* Thoda readable, jyada bada nahi */
    }

    /* ====== 4. Toggle Button Fix (Sahi Color) ====== */
    .navbar-toggler {
        background: rgba(255, 255, 255, 0.15) !important; /* Halka white tint background */
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.4) !important; /* Subtle white border */
        padding: 6px !important;
    }
    
    /* Force Toggle Icon to be WHITE (Not orange) */
    .navbar-toggler-icon {
        filter: invert(1) brightness(200%) !important; /* Ekdum white chamkega */
    }

    /* ====== 5. Hero Section Height Fix (Not too long) ====== */
    .hero-section {
        padding-top: 90px !important; /* Header ke liye spacing */
        height: 60vh !important; /* Perfect height, screen se bahar nahi jayega */
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Banner box adjustment */
    .hero-content-box {
        margin: 0 !important;
        padding: 30px 20px !important;
        width: 100% !important;
        border-radius: 6px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px !important; /* Mobile readable font size */
        line-height: 1.2 !important;
    }
}

/* ============================================================================================== 
===================================== Front Page Sections Ends =================================== */

/* ==============================================================================================
================================================Section 1: Clean & Healthy ========================= */
.section-clean-healthy {
    position: relative;
    padding: 80px 0;
    background-image: url('https://tidyteamclean.com.au/wp-content/uploads/2021/03/home-essentials.png'); /* Apni image ka link yahan daal */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay */
    z-index: 1;
}

.section-clean-healthy .container {
    position: relative;
    z-index: 2;
}

.clean-check-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 550px;
}

.clean-check-list {
    list-style: none;
    padding: 0; margin: 0;
}

.clean-check-list li {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.clean-check-list li i {
    color: #0093ff; /* Logo Blue */
    font-size: 20px;
    margin-right: 15px;
}

.clean-title {
    color: #0093ff; /* Logo Blue */
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.clean-desc {
    color: #ffffff;
    font-size: 17px;
    opacity: 0.9;
    max-width: 500px;
}

/* --- Section 2: Blue CTA Bar --- */
.section-cta-blue {
    background: #0066ff; /* Solid Blue Section */
    padding: 40px 0;
}

.cta-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.btn-send-request {
    background: #ffffff;
    color: #0066ff !important;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.btn-send-request:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 991px) {
    .section-clean-healthy { padding: 60px 0; text-align: center; }
    
    .clean-check-card { 
        margin: 0 auto 40px; 
        padding: 30px 20px; 
    }
    
    .clean-check-list li { text-align: left; }
    
    .clean-title { font-size: 32px; }
    
    .cta-flex-box { 
        flex-direction: column; 
        text-align: center; 
        gap: 25px; 
    }
    
    .cta-text { font-size: 22px; }
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 80px 0;
    background-color: #f4f9ff; /* Very light blue background like screenshot */
}

.google-review-card {
    background: transparent; /* Flat design as per image */
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    transition: 0.3s;
}

.google-icon-wrap {
    background: #fff;
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.google-icon-wrap img {
    width: 35px;
}

.review-stars {
    color: #0093ff; /* Logo Blue stars */
    font-size: 14px;
    margin-bottom: 8px;
}

.client-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Footer Section */
.review-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 40px;
}

.footer-review-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.review-social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef3f7;
    color: #0093ff;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.review-social-btn:hover {
    background: #0093ff;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .google-review-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-footer .footer-review-title {
        font-size: 20px;
    }
}

/* ABOUT PAGE BEGINS */
/* --- About Page Special Styles --- */
.page-template-page-about .main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 9999;
    border: none !important;
    box-shadow: none !important;
}

.about-hero {
    position: relative;
    height: 500px;
    background: url('https://tidyteamclean.com.au/wp-content/uploads/2024/07/header-image.png');
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Header ke liye space */
    overflow: hidden;
}
.about-hero .hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark layer taaki white text chamke */
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
}
.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    font-weight: 600;
}

.founder-section {
    padding: 80px 0;
    background: #ffffff;
}
.main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}
.main-heading span {
    color: #0093ff; /* Logo Blue */
}
.desc {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-image-frame { position: relative; }
.about-image-frame img{
    height:500px;
    border-radius:8px;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #0093ff;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.promise-img-wrap {
    width: 80px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* White background for image circle */
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.promise-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.promise-section {
    padding: 80px 0;
    background: #f8fbff;
}
.promise-card:hover {
    background: #0093ff !important;
    color: #fff !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 147, 255, 0.25);
}
.promise-card:hover h4, 
.promise-card:hover p {
    color: #fff !important;
}
.promise-card {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    border-radius: 8px;
    cursor: pointer;
}

.promise-card.active .promise-img-wrap {
    background: rgba(255, 255, 255, 0.2); /* Light transparent background over blue card */
    box-shadow: none;
}
.promise-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}
.promise-card.active { background: #0093ff; color: #fff; border: none; transform: translateY(-10px); }
.promise-card.active i { color: #fff; }
.icon-circle { font-size: 35px; color: #0093ff; margin-bottom: 20px; }

@media (max-width: 991px) {
    .about-hero { height: 350px; }
    .about-title { font-size: 36px; }
    .founder-section { text-align: center; }
    .experience-badge { position: static; margin-top: 20px; display: inline-block; }
    .promise-card {
        margin-bottom: 30px; 
    }
}

/* --- Limited Time Offer Banner --- */
.section-offer-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Desktop par parallax effect */
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Darker overlay for text readability */
    z-index: 1;
}

.section-offer-banner .container {
    z-index: 2;
}

.offer-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
}

/* Blue Container Box */
.offer-blue-box {
    background: #007bff; /* Logo Blue */
    padding: 40px 50px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.offer-text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Button Styling */
.btn-send-request {
    background: #ffffff;
    color: #007bff !important;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid #ffffff;
}

.btn-send-request:hover {
    background: transparent;
    color: #ffffff !important;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .section-offer-banner { padding: 80px 0; background-attachment: scroll; }
    
    .offer-title { 
        font-size: 36px; 
        text-align: center; 
        margin-bottom: 30px;
    }
    
    .offer-blue-box { 
        padding: 30px 20px; 
        margin: 0 10px;
    }
    
    .offer-text { 
        font-size: 24px; 
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .offer-text { font-size: 20px; }
    .btn-send-request { width: 100%; text-align: center; }
}

/* --- Our Cleaning Experts Section --- */
.experts-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-bold {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-desc-grey {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Checklist Styling */
.expert-checklist li {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.expert-checklist li i {
    color: #0093ff; /* Logo Blue */
    font-size: 20px;
    margin-right: 15px;
}

/* Image Wrap */
.expert-image-wrap .rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .experts-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .section-title-bold {
        font-size: 32px;
    }
    
    .section-desc-grey {
        margin: 0 auto 30px;
    }
    
    .expert-checklist {
        display: inline-block;
        text-align: left;
    }
    
    .expert-image-wrap {
        margin-top: 30px;
    }
}

/* Page Contact Styling */
/* --- Contact Page Styles --- */
.contact-hero {
    background-image: url('https://tidyteamclean.com.au/wp-content/uploads/2024/07/header-image.png') !important;
}

.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-form-card {
    padding-right: 40px;
}

.form-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; color: #1a1a1a; }
.form-subtitle { color: #666; margin-bottom: 30px; font-size: 15px; }

.main-contact-form label { font-weight: 600; font-size: 14px; margin-bottom: 8px; color: #333; }
.main-contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
}

.btn-contact-submit {
    background: #007bff;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

/* Feature Boxes Style (Right Side) */
.contact-features-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-item .icon-circle {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-item h4 { font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: #555; line-height: 1.6; }

/* Bottom Call Section */
.call-bottom-section { padding: 80px 0; background: #fff; }
.bottom-call-title { font-size: 36px; font-weight: 800; margin-bottom: 30px; }

.btn-phone-large {
    background: #007bff;
    color: #fff !important;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.email-bottom h5 { font-weight: 800; margin-bottom: 5px; }
.email-bottom p a { color: #555; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-form-card { padding-right: 0; margin-bottom: 50px; }
    .bottom-call-title { font-size: 28px; }
}

/* =========================================================================
======================= SHOP & WOOCOMMERCE STYLES ========================== */

.header-white-bg {
    background-color: #ffffff !important;
    position: relative !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid #eee;
    z-index: 999;
}

.header-white-bg .navbar-nav .nav-link {
    color: #222222 !important;
    font-weight: 600;
}

.header-white-bg .navbar-nav .nav-link:hover {
    color: #0093ff !important;
}

/* 2. SHOP MAIN WRAPPER (SPACING) */
.archive.post-type-archive-product #content,
.single-product #content,
.shop-main-wrapper {
    padding-top: 80px !important; /* Header se thoda extra distance safe side */
    background-color: #fcfcfc;
    min-height: 70vh;
}

/* 3. PRODUCT CARD DESIGN (MODERN LOOK) */
ul.products li.product {
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 12px !important;
    padding: 25px 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
    text-align: center;
}

/* Card Hover Animation */
ul.products li.product:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 147, 255, 0.1) !important;
    border-color: #0093ff !important;
}

/* Product Image Fix */
ul.products li.product img {
    height: 180px !important;
    object-fit: contain !important;
    margin-bottom: 20px !important;
    border-radius: 8px;
}

/* Price & Button Styling */
ul.products li.product .price {
    color: #0093ff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    display: block;
}

ul.products li.product .button {
    background: #0093ff !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    width: 100%; 
    padding: 12px !important;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
}

/* 4. PAGINATION STYLING */
.woocommerce-pagination ul {
    border: none !important;
    margin-top: 30px !important;
}
.woocommerce-pagination ul li a, 
.woocommerce-pagination ul li span {
    border-radius: 5px !important;
    margin: 0 5px !important;
    border: 1px solid #ddd !important;
    padding: 10px 15px !important;
}
.woocommerce-pagination ul li span.current {
    background: #0093ff !important;
    color: #fff !important;
    border-color: #0093ff !important;
}
/* Button Fix */
.woocommerce ul.products li.product .button {
    background: #0093ff !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    width: 100%;
    margin-top: auto;
}
.woocommerce ul.products li.product {
    width: 100% !important; /* Column width control karega */
    float: none !important;
    margin: 0 !important;
    background: #ffffff;
    border: 1px solid #eee !important;
    border-radius: 12px;
    padding: 20px !important;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.woocommerce ul.products li.product a img {
    height: 200px !important;
    object-fit: contain !important; /* Image stretch nahi hogi */
    margin-bottom: 15px !important;
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
}
.price {
    font-size: 18px !important;
    color: #0093ff !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}
.woocommerce-loop-product__title {
    font-size: 16px !important;
    font-weight: 700 !important;
    height: 50px; /* Uniform height for titles */
    overflow: hidden;
    margin-bottom: 10px !important;
    line-height: 1.4;
}
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Ek line mein 4 product */
    gap: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* Jab mobile ho toh 1 ya 2 product dikhao */
@media (max-width: 991px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
    .woocommerce ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}










/* ====== FINAL SHOP GRID REPAIR ====== */

/* 1. Pseudo-elements ko khatam karo jo space kha rahe hain */
.woocommerce ul.products:before,
.woocommerce ul.products:after,
.woocommerce-page ul.products:before,
.woocommerce-page ul.products:after {
    display: none !important;
    content: none !important;
}

/* 2. Grid System ko Modern tarike se apply karo */
.woocommerce ul.products {
    display: grid !important;
    /* repeat(4, 1fr) se exact 4 columns banyenge bina kisi gap ke */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
}

/* 3. List Item (Product Card) ka manual width hatao */
.woocommerce ul.products li.product {
    width: 100% !important; /* Grid column automatically handle karega */
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    list-style: none !important;
    background: #fff;
    border: 1px solid #eee !important;
    border-radius: 12px;
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 4. Mobile Responsiveness */
@media (max-width: 1199px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 991px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
    .woocommerce ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}

/* Images alignment fix */
.woocommerce ul.products li.product img {
    max-height: 200px !important;
    object-fit: contain;
    margin: 0 auto 15px !important;
}

/* =========================================================================
========== SINGLE PRODUCT PAGE - THE BRANDED E-COMMERCE FIX ============ */

/* --- 1. Main Page Spacing & BG --- */
.single-product .shop-main-wrapper, 
.single-product #content {
    background-color: #fcfcfc; /* Halka off-white to highlight product */
    padding-top: 80px !important; /* Absolute Header space */
    padding-bottom: 80px !important;
}

/* Container Width (Matching container-1440) */
.single-product .container-1440 {
    max-width: 1440px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* --- 2. Left Side: Product Image & Gallery (Slide/Zoom Effect) --- */
.single-product .woocommerce-product-gallery {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-bottom: 0 !important;
    float: none !important;
}

/* Image zoom effect with hover */
.single-product .woocommerce-product-gallery__image img {
    border-radius: 10px;
    max-height: 500px;
    object-fit: contain !important;
    width: 100%;
    transition: transform 0.3s ease !important;
}

.single-product .woocommerce-product-gallery__image img:hover {
    transform: scale(1.03); /* Chota sa zoom taaki detail dikhe */
    cursor: zoom-in;
}

/* Gallery Thumbnails (Slides/Tiled Below) */
.single-product .flex-control-thumbs li {
    width: 70px !important; /* Thumbnails ka size */
    height: 70px !important;
    flex: 0 0 auto;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}
.single-product .flex-control-thumbs li img.flex-active,
.single-product .flex-control-thumbs li:hover img {
    opacity: 1;
    border: 2px solid #0093ff;
}
.woocommerce-message .button {
    background: #0093ff !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 20px;
}
.woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    z-index: 9;
    background: #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.single-product .flex-control-thumbs li {
    width: 20% !important; /* Column based gallery */
    float: left;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.single-product .flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Thumbs symmetrical dikhenge */
    opacity: 0.6;
}

.single-product .flex-control-thumbs li.flex-active img,
.single-product .flex-control-thumbs li img:hover {
    border-color: #0093ff;
}

/* --- 3. Right Side: Product Details Content (Align & Bold) --- */
.product-details-content {
    padding-left: 40px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
}

/* Title Styling */
.product-title-main {
    font-size: 36px !important;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Price Styling (Premium Large) */
.product-price-large .amount {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #0093ff !important; /* Brand Blue */
    margin-bottom: 15px;
}

/* Short Description Text (Cleaning Details) */
.product-short-desc p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* --- 4. Add to Cart Area (Bold Buttons) --- */
/* Quantity Box Styling */
.single-product .quantity {
    display: inline-block;
    vertical-align: middle;
}

.single-product .quantity input {
    height: 50px !important;
    width: 70px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 5px !important;
    text-align: center;
    font-weight: 700;
    background: #f9f9f9;
}

/* MAIN Add to Cart Button */
.single-product .single_add_to_cart_button {
    height: 50px !important;
    padding: 0 45px !important;
    background-color: #0093ff !important; /* Brand Blue */
    color: #fff !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    transition: 0.3s;
    margin-left: 15px !important;
    border: none;
    vertical-align: middle;
}

.single-product .single_add_to_cart_button:hover {
    background-color: #0076cc !important;
    box-shadow: 0 10px 20px rgba(0, 147, 255, 0.2);
    transform: translateY(-2px);
}

/* PAY WITH LINK link button fix (jaise tum use kar rahe ho) */
.link-pay-button {
    display: none; /* Mobile pe chupa lo agar jagah kam ho, jaisa shopify mein hota hai */
}

/* --- 5. Bottom Tabs (Underline Tidy Tabs) --- */
.woocommerce-tabs ul.tabs {
    border: none !important;
    background: transparent !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important; /* Tabs ke beech mein space */
    padding: 0 !important;
    margin-bottom: -1px !important; /* Content box se chipkane ke liye */
    list-style: none !important;
}

.woocommerce-tabs ul.tabs li {
    background-color: #f1f1f1 !important; /* Halka grey background */
    border: 1px solid #e5e5e5 !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important; /* Sirf upar se round */
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li a {
    color: #555 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 14px !important;
    padding: 15px 25px !important;
    display: block;
    text-decoration: none !important;
}
.woocommerce-tabs ul.tabs li.active {
    background-color: #0093ff !important; /* Logo ka Blue color */
    border-color: #0093ff !important;
}
.woocommerce-tabs ul.tabs li:not(.active):hover {
    background-color: #e0e0e0 !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #ffffff !important; /* Text white ho jayega active hone par */
}

.woocommerce-tabs .panel {
    border: 1px solid #e5e5e5 !important;
    border-radius: 0 0 12px 12px !important; /* Niche se round */
    padding: 40px !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    line-height: 1.8;
}

/* Related Products Grid */
.related.products h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}
.woocommerce-tabs .panel h2 {
    color: #222;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Reuse the Shop Grid CSS here for consistent look */
.single-product .related ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- 6. Mobile Responsiveness --- */
@media (max-width: 991px) {
    .product-details-content { padding-left: 0; margin-top: 30px; }
    .product-title-main { font-size: 28px !important; }
    
    .single-product .woocommerce-product-gallery__image img {
        max-height: 400px;
    }
    
    .flex-control-thumbs li { width: 25% !important; }
    
    .woocommerce-tabs ul.tabs li a { margin: 0 10px; font-size: 14px; }
}

@media (max-width: 767px) {
    .single-product .single_add_to_cart_button { width: 100%; margin-left: 0 !important; margin-top: 15px; }
    .single-product .quantity { display: block; margin: 0 auto 15px; }
    .woocommerce-tabs ul.tabs {
        flex-direction: column;
        gap: 5px;
    }
    .woocommerce-tabs ul.tabs li {
        border-radius: 5px !important;
        border-bottom: 1px solid #ddd !important;
    }
}






/* ====== SINGLE PRODUCT - THE "KHUBSURAT" IMAGE FIX ====== */
.woocommerce-message {
    border-top: 3px solid #0093ff !important;
    border-radius: 5px;
    background-color: #f0faff;
    color: #0076cc;
    padding: 15px 25px !important;
    margin-bottom: 30px !important;
}

/* 1. Main Page Spacing & BG */
.single-product-wrapper {
    background-color: #fdfdfd; /* Halka off-white to highlight product */
    padding-top: 80px !important; /* Absolute Header space */
    padding-bottom: 80px !important;
}
.col-gallery-fix .woocommerce-product-gallery {
    margin-bottom: 0 !important;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background: #fff;
}
.product-action-area-standard .single_add_to_cart_button {
    height: 50px !important;
    padding: 0 45px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    transition: 0.3s;
}
.product-action-area-standard form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    flex-wrap: wrap;
}
.col-gallery-fix .flex-control-thumbs li {
    width: 20% !important;
    float: left;
    margin: 0 5px;
    padding: 0;
}
.col-gallery-fix .flex-control-thumbs {
    list-style: none;
    margin: 15px -5px 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
}
.col-gallery-fix .woocommerce-product-gallery__image img {
    height: 500px !important; /* Uniform height */
    object-fit: contain !important; /* Image safe रहेगी */
    width: 100%;
}

/* 2. Left Side: Product Gallery (The Box) */
.single-product .woocommerce-product-gallery {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03) !important;
    position: relative;
    float: none !important;
    width: 100% !important;
    margin-bottom: 30px !important;
}
.single-product .woocommerce-product-gallery__wrapper {
    margin-bottom: 20px !important;
    border-radius: 10px;
    overflow: hidden;
}

/* 3. Main Image Styling - Fixed, Perfectly Fitte Inside Box */
.single-product .woocommerce-product-gallery__image {
    width: 100%;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 450px !important; /* Fixed height for clean look */
    object-fit: contain !important; /* Image stretch nahi hogi, box ke andar fit rahegi */
    background: #fff;
    cursor: zoom-in !important; /* Zoom indicator */
}

/* detail zoom effect (requires functions.php update) */
.single-product .woocommerce-product-gallery__image img:hover {
    cursor: zoom-in;
}

/* 4. Thumbnails Gallery (Sliders Below Main Image) */
.single-product .flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
    justify-content: flex-start;
}

.single-product .flex-control-thumbs li {
    width: 18% !important; /* Adjust based on needs */
    float: left;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.single-product .flex-control-thumbs li img {
    border: 1px solid #eee;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s ease;
    height: 80px !important;
    object-fit: cover; /* Crop thumbnails symmetrically */
}

.single-product .flex-control-thumbs li.flex-active img,
.single-product .flex-control-thumbs li img:hover {
    border-color: #0093ff !important; /* Active brand color border */
}

/* Hide WooCommerce pagination until products are fixed */
.woocommerce-after-shop-loop {
    display: none !important;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .product-details-content { padding-left: 0; margin-top: 30px; }
    .product-title-main { font-size: 28px !important; }
    
    .single-product .woocommerce-product-gallery__image img {
        height: 350px !important;
    }
    
    .flex-control-thumbs li { width: 25% !important; }
}

/* 1. Breadcrumbs hatao (Upar wala path) */
.woocommerce-breadcrumb, 
.woocommerce-breadcrumb-wrapper {
    display: none !important;
}

/* 2. Pay with Link button hatao */
.link-pay-button, 
#stripe-payment-request-button, 
.stripe-payment-request-button-container {
    display: none !important;
}

/* 3. SKU, Category, aur Tags (Meta) hatao */
/* Isse niche wala SKU ka double dabba poora saaf ho jayega */
.product_meta {
    display: none !important;
}

/* 4. Agar koi extra line (Border) dikh rahi ho toh use bhi hatao */
.product-meta-extra {
    border: none !important;
    display: none !important;
}

/* 5. Add to Cart button ko thoda bada aur center align kar dete hain ab jagah hai */
.single-product .single_add_to_cart_button {
    margin-left: 0 !important; /* Agar left margin tha toh */
    width: auto !important;
    min-width: 200px;
}


/* AJAX Success Message Styling */
.ajax-success-msg {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #28a745;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    animation: fadeInDown 0.5s ease;
}
.amount {
    color: #0093ff!important;
    font-size: 26px!important;
}
.ajax-success-msg a {
    color: #0093ff;
    text-decoration: underline;
    margin-left: 10px;
}

/* Button Loading State */
.single_add_to_cart_button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #0076cc !important;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Stock text khali hone par space na le */
.woocommerce div.product p.availability:empty {
    display: none !important;
}

/* Out of stock text ko thoda highlight (Red) kar dete hain */
.woocommerce div.product p.availability.out-of-stock {
    color: #d9534f;
    font-weight: 700;
    background: #fdf2f2;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* =========================================================================
======================= MODERN CART TOTALS (SUNDAR) ======================== */

/* 1. Header se Cart Title ko safe distance do (Jab Header aayega) */
.woocommerce-cart .shop-main-wrapper {
    padding-top: 80px !important;
    background-color: #fdfdfd;
}

.woocommerce-cart h1.cart-title {
    font-size: 38px !important;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px !important;
}

/* 2. Cart Table Layout */
.custom-cart-table {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.custom-cart-table th {
    background: #fcfcfc !important;
    color: #222 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px !important;
}

/* 3. CART TOTALS (The Main Box - Fix Big Price) */
.cart-collaterals .cart_totals {
    width: 100% !important;
    background: #ffffff;
    padding: 30px !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 147, 255, 0.05); /* Soft Brand Blue Shadow */
    border: 1px solid #f0f0f0;
}

.cart_totals h2 {
    font-size: 26px !important;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
    border-bottom: 3px solid #0093ff; /* Logo Blue Line */
    display: inline-block;
    padding-bottom: 5px;
}

/* Cart Subtotal Rows */
.cart_totals table.shop_table {
    border: none !important;
}

.cart_totals table th, .cart_totals table td {
    border: none !important;
    border-bottom: 1px solid #f9f9f9 !important;
    padding: 15px 0 !important;
}

/* PRICE BIG FIX - Targetting the amount tag inside WooCommerce default output */
.cart_totals table td.product-subtotal .amount, 
.cart_totals table td .order-total .amount,
.cart_totals .wc-cart-totals__row .amount {
    font-size: 24px !important; /* Size fixed, small and clean */
    font-weight: 800 !important;
    color: #0093ff !important; /* Brand Blue */
    display: block;
}

/* Order Total Row styling */
.cart_totals .order-total th, 
.cart_totals .order-total td {
    font-size: 18px !important;
    font-weight: 800;
}

/* 4. Checkout Button Styling */
.wc-proceed-to-checkout a.checkout-button {
    background: #0093ff !important;
    color: #fff !important;
    width: 100%;
    display: block;
    text-align: center;
    padding: 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px !important;
    transition: 0.3s;
    border: none !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: #0076cc !important;
    box-shadow: 0 10px 20px rgba(0, 147, 255, 0.2);
    transform: translateY(-2px);
}

.cart .amount{
    font-size: 16px!important;
}

/* 1. Elementor aur Default Spacing Reset */
.woocommerce-checkout .elementor-section-wrap,
.woocommerce-checkout .elementor {
    display: none !important; /* Agar koi khali elementor section hai toh */
}

/* 2. Billing details aur Grid Alignment Fix */
.woocommerce-checkout .container-1440 {
    padding-top: 0 !important;
    display: block !important;
}

/* 3. Your Order Table overlapping fix */
#order_review_heading, 
#order_review {
    position: relative;
    float: none !important;
    width: 100% !important;
    clear: both;
}

/* 4. Checkout Row ko Flex banao taaki Your Order side mein aaye */
.checkout-wrapper-custom {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
}

.checkout-wrapper-custom .col-lg-7 {
    flex: 0 0 62% !important;
    max-width: 62% !important;
}

.checkout-wrapper-custom .col-lg-5 {
    flex: 0 0 35% !important;
    max-width: 35% !important;
}

/* 1. HTML aur Body se kisi bhi tarah ka margin-top hatao */
html {
    margin-top: 0 !important;
}

* html body { 
    margin-top: 0 !important; 
}


/* 4. Elementor ke faltu placeholders ko hide karo */
.elementor-location-header, 
.elementor-section-wrap > .elementor-section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 5. Content wrapper ko thoda niche dhakelo taaki header ke piche na chhup jaye */
.woo-page-padding {
    padding-top: 80px !important; /* Header ki height ke barabar */
}

.woocommerce-checkout .amount{
    font-size:16px!important;
}
.woocommerce-checkout{
    padding:0px!important;
}
.form-row-first, .form-row-last {
    width: 50% !important; /* Dono ko 48% width do */
    float: none !important;
    display: inline-block !important;
}
.form-row-wide {
    width: 100% !important; /* Baki fields (Address, Company) ko 100% do */
    clear: both;
}
.woocommerce-checkout .form-row input.input-text, 
.woocommerce-checkout .form-row select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-sizing: border-box !important;
}
@media (max-width: 991px) {
    .checkout-wrapper-custom .col-lg-7, 
    .checkout-wrapper-custom .col-lg-5 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .form-row-first, .form-row-last {
        width: 100% !important;
    }
}
.woocommerce-billing-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
}
.checkout-billing-section {
    background: #ffffff !important;
    border-radius: 15px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 40px !important; /* Space inside the box */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    margin-bottom: 30px;
    display: block !important;
    overflow: hidden; /* Clearfix ka kaam karega */
}
#customer_details{
    width: 100%!important;
}
/* Checkbox aur Title ko hamesha dikhao */
#ship-to-different-address {
    display: block !important;
    visibility: visible !important;
    margin-bottom: 20px;
}

/* Sirf niche wale inputs ko default mein chhupao */
.shipping_address {
    display: none; 
}
html, body {
    overflow-x: hidden !important; /* Horizontal scroll uda do */
}
.checkout-sidebar-sticky {
    position: sticky !important;
    top: 120px; /* Header ke niche lock karne ke liye */
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 30px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid #eee !important;
}
.woocommerce-checkout-review-order-table {
    border: none !important;
    width: 100% !important;
    border-collapse: collapse;
}
.woocommerce-checkout-review-order-table th, 
.woocommerce-checkout-review-order-table td {
    padding: 15px 0 !important;
    border-bottom: 1px solid #f4f4f4 !important;
    font-size: 14px;
    color: #444;
}
.woocommerce-checkout-review-order-table .product-name {
    font-weight: 500;
    line-height: 1.4;
    padding-right: 15px !important;
}
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .order-total .amount {
    text-align: right !important;
    font-weight: 700;
    color: #000;
}
.woocommerce-checkout-review-order-table .order-total {
    border-top: 2px solid #0093ff !important; /* Brand Blue Line */
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    padding-top: 20px !important;
    font-size: 18px !important;
    color: #0093ff !important;
}
#payment {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-top: 30px !important;
}
#payment ul.payment_methods li label {
    font-weight: 700 !important;
    color: #333;
}
.wc-stripe-elements-field, 
.wc-stripe-iban-element-field {
    border: 1px solid #ddd !important;
    padding: 12px !important;
    border-radius: 8px !important;
    background: #fcfcfc !important;
    margin-bottom: 15px !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.02) !important;
}
.woocommerce-checkout #payment .payment_methods li .payment_box.payment_method_stripe {
    background-color: #f8faff !important; /* Halka blueish grey tint */
    border: 1px solid #d1e3ff !important;
    color: #444 !important;
    border-radius: 10px !important;
    padding: 20px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* 4. Payment Method Labels & Icons */
#payment ul.payment_methods li {
    padding: 15px 0 !important;
    border-bottom: 1px solid #eee !important;
}

#payment ul.payment_methods li:last-child {
    border-bottom: none !important;
}

#payment ul.payment_methods li label {
    font-weight: 700 !important;
    color: #222 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Stripe Cards Icons (Visa/Mastercard) */
#payment ul.payment_methods li img {
    max-height: 24px !important;
    margin-left: 10px !important;
    filter: grayscale(0.2);
}
.woocommerce-SavedPaymentMethods{
    padding: unset!important;
}
#place_order {
    width: 100% !important;
    background-color: #0093ff !important; /* Tera brand blue */
    color: #fff !important;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    transition: 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 147, 255, 0.3);
}

#place_order:hover {
    background-color: #0076cc !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 147, 255, 0.4);
}

/* ====== THANK YOU / ORDER RECEIVED PAGE CLEANUP ====== */

/* 1. Order Meta (Number, Date, Total) */
ul.woocommerce-order-overview {
    background: #f8fbff !important;
    border: 1px dashed #0093ff !important;
    border-radius: 10px !important;
    padding: 25px !important;
    display: flex;
    justify-content: space-around;
    list-style: none;
}

ul.woocommerce-order-overview li {
    border-right: 1px solid #d1d1d1;
    padding-right: 20px;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
}

ul.woocommerce-order-overview li strong {
    display: block;
    font-size: 18px;
    color: #000;
    margin-top: 5px;
}

/* 2. Tables & Headers */
.woocommerce-order-details__title, .woocommerce-column__title {
    font-weight: 800 !important;
    font-size: 22px !important;
    margin-bottom: 20px !important;
    color: #222;
}

.shop_table.order_details {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid #eee !important;
}

/* 3. Address Boxes */
.woocommerce-customer-details address {
    border: 1px solid #eee !important;
    padding: 20px !important;
    border-radius: 12px !important;
    background: #fff !important;
    line-height: 1.8;
}
/* ====== PREMIUM MY ACCOUNT DASHBOARD ====== */

/* 1. Wrapper Fix */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* 2. Navigation Menu (Left Sidebar) */
.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e1eefc;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 18px;
    background: #fff;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #0093ff !important;
    color: #fff !important;
    border-color: #0093ff;
    box-shadow: 0 5px 15px rgba(0, 147, 255, 0.2);
}

/* 3. Content Area (Right Side) */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* 4. Dashboard Cards (Optional but Recommended) */
.my-account-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.account-card {
    padding: 25px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
}
.woocommerce-account .amount{
    font-size:16px!important;
}





.woocommerce-account .addresses .title .edit {
    float: left;
}


.btn-login-nav {
    background-color: transparent;
    color: #0093ff !important; 
    border: 2px solid #0093ff !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 25px !important;
}

.btn-login-nav:hover {
    background-color: #0093ff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
    transform: translateY(-2px);
}

/* Icons Wrap Alignment */
.header-icons-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile par buttons ka size manage karne ke liye */
@media (max-width: 576px) {
    .btn-login-nav {
        padding: 5px 15px !important;
        font-size: 11px;
    }
}







