:root {
    /* COPYME Brand Colors */
    --primary-color: #243E8B;
    /* Deep Blue */
    --secondary-color: #38B6D9;
    /* Cyan Blue */
    --accent-magenta: #E63B8E;
    --accent-yellow: #F5C542;

    /* Gradients derived from brand colors - maintained for subtle depth if needed, but flatter is preferred */
    --primary-gradient: linear-gradient(135deg, #243E8B 0%, #1a2d69 100%);
    --primary-gradient-hover: linear-gradient(135deg, #38B6D9 0%, #243E8B 100%);

    --primary-rgb: 36, 62, 139;

    --success-color: #10B981;
    --danger-color: #EF4444;

    --background-light: #FFFFFF;
    --background-off-white: #F8F9FA;
    --background-dark: #121212;
    --surface-light: #FFFFFF;
    --surface-dark: #1E1E1E;

    --text-main-light: #111827;
    --text-main-dark: #F3F4F6;
    --text-sub-light: #6B7280;
    --text-sub-dark: #9CA3AF;

    --border-light: #E5E7EB;
    --border-dark: #374151;

    /* Shadows - Clean & Professional */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-off-white);
    color: var(--text-main-light);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(---text-main);
}

.fw-bold {
    font-weight: 800 !important;
}

/* Bootstrap Overrides to match design */
.container {
    max-width: 1280px;
    /* max-w-7xl in Tailwind is 80rem = 1280px */
}

/* Typography Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.opacity-10 {
    opacity: .1 !important;
}

.pointer-events-none {
    pointer-events: none !important;
}

/* Buttons - Modern & Unique */
/* Buttons - Bold, Flat, Rectangular */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    /* Rectangular */
    letter-spacing: 0.02em;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* Remove Shine Effect for cleaner flat look */
.btn::after {
    display: none;
}

/* Primary Button - Flat Blue */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #1a2d69;
    /* Darker blue interact */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(36, 62, 139, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary / Outline Button */
.btn-outline-primary {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(36, 62, 139, 0.2);
}

/* Acccent Button (Magenta) */
.btn-accent {
    background-color: var(--accent-magenta);
    color: #fff;
}

.btn-accent:hover {
    background-color: #c22a75;
    color: #fff;
}

/* Dark Button */
.btn-dark {
    background-color: var(--text-main-light);
    color: #fff;
    box-shadow: none;
}

.btn-dark:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* White / Light Button */
.btn-light,
.btn-white {
    background-color: #fff;
    color: var(--text-main-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-light:hover,
.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* Loading State Override */
.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    transform: none !important;
    box-shadow: none !important;
}

/* =========================================
   WooCommerce Button Overrides
   ========================================= */

/* Main Add to Cart Button (Single Product) */
.single_add_to_cart_button.button {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    /* Rectangular */
    padding: 1rem 3rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 200px;
    height: auto !important;
    line-height: 1.5 !important;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

/* Remove Shine effect */
.single_add_to_cart_button.button::after {
    display: none;
}

.single_add_to_cart_button.button:hover {
    background: #1a2d69 !important;
    /* Darker blue */
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(36, 62, 139, 0.3) !important;
}

.single_add_to_cart_button.button:active {
    transform: translateY(0) !important;
    box-shadow: none !important;
}

.single_add_to_cart_button.button.loading {
    padding-right: 3rem !important;
    position: relative;
    opacity: 0.8 !important;
}

.single_add_to_cart_button.button.loading::after {
    top: 50% !important;
    right: 1.5rem !important;
    margin-top: -8px !important;
}

/* Disabled Add to Cart (e.g. variation not selected) */
.single_add_to_cart_button.button.disabled {
    background-color: var(--border-light) !important;
    color: var(--text-sub-light) !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* General WooCommerce Buttons (.button) to match theme */
/* General WooCommerce Buttons (.button) to match theme */
.woocommerce button.button,
.woocommerce .button {
    background-color: var(--text-main-light);
    /* Dark by default */
    color: #fff;
    border-radius: 0;
    /* Rectangular */
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.woocommerce button.button:hover,
.woocommerce .button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}


/* Dark Mode Support (Basic structure) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--background-dark);
        color: var(--text-main-dark);
    }
}


/* Manual Mega Menu Styles (Legacy/Fallback) */
.mega-menu-parent {
    position: static !important;
}

.mega-menu-parent>.dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    background-color: var(--surface-light);
}

.mega-menu-parent>.dropdown-menu>li>a {
    font-weight: 600;
    color: var(--text-main-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    pointer-events: none;
    /* Acts as a header */
}

/* Column handling for Mega Menu */
@media (min-width: 992px) {
    .mega-menu-parent>.dropdown-menu {
        display: none;
    }

    .mega-menu-parent:hover>.dropdown-menu,
    .mega-menu-parent>.dropdown-menu.show {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: flex-start;
        max-width: 1280px;
        margin: 0 auto;
        left: 0;
        right: 0;
        position: absolute;
    }

    .mega-menu-parent>.dropdown-menu {
        width: 100vw;
        left: 50%;
        right: auto;
        margin-left: -50vw;
        padding: 2rem calc(50vw - 640px + 1.5rem);
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
    }

    .mega-menu-parent>.dropdown-menu>li {
        flex: 1;
        min-width: 200px;
        max-width: 25%;
        padding: 0 1rem;
    }

    .mega-menu-parent .dropdown-item {
        padding-left: 0;
        padding-right: 0;
        color: var(--text-sub-light);
        font-size: 0.9rem;
    }

    .mega-menu-parent .dropdown-item:hover {
        color: var(--primary-color);
        background: none;
    }
}

/* =========================================
   Max Mega Menu Plugin Overrides
   ========================================= */
/* Wrapper Reset */
#mega-menu-wrap-menu-1 {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Top Level Items */
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    color: var(--text-main-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    /* Match theme 0.875rem */
    padding: 0 1rem;
    line-height: 48px;
    /* Match standard py-3ish feel */
    height: auto;
    background: transparent;
    transition: color 0.2s ease;
}

/* Hover/Active Top Level */
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item:hover>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
    color: var(--primary-color);
    background: transparent;
}

/* Submenu / Mega Panel Container */
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>ul.mega-sub-menu {
    background-color: var(--surface-light);
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-hover);
    padding: 2rem;
    /* Add padding to match theme aesthetic */
}

/* 2nd Level Items (Headings in Mega Menu) */
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
    color: var(--text-main-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 3rd Level Items (Links) */
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>ul.mega-sub-menu li.mega-menu-item li.mega-menu-item a.mega-menu-link {
    color: var(--text-sub-light);
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    text-transform: none;
    transition: all 0.2s ease;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>ul.mega-sub-menu li.mega-menu-item li.mega-menu-item a.mega-menu-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
    /* Tiny shift effect */
}

/* Mobile Toggle Bar (if active) */
.mega-menu-toggle {
    background: var(--surface-light);
    color: var(--text-main-light);
}


/* Product Card Design */
.product-card {
    background-color: var(--surface-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
}

.product-card .card-img-wrapper {
    position: relative;
    /* rounded-4 is handled by bootstrap utility in HTML, or we can enforce here */
}

/* Image Transition */
.product-card .card-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* Hover Icons (Top Right) */
.product-card .hover-actions {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .hover-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card .action-btn {
    width: 38px;
    height: 38px;
    background-color: #fff;
    color: var(--text-main-light);
    border: none;
    transition: all 0.2s ease;
}

.product-card .action-btn:hover {
    background-color: var(--text-main-light);
    /* Black/Dark hover */
    color: #fff;
    transform: scale(1.1);
}

.product-card .product-category a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card .product-category a:hover {
    color: var(--primary-color);
}

/* Product Title */
.product-card .product-title a {
    color: var(--text-main-light);
    transition: color 0.2s;
}

.product-card .product-title a:hover {
    color: var(--primary-color);
}

.product-card .product-title a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Ensure buttons are clickable above the stretched link */
.product-card .hover-actions,
.product-card .mt-auto a {
    z-index: 3;
    pointer-events: auto;
    position: relative;
    /* Ensure z-index works */
}

/* Clean Price */
.product-price {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.product-price del {
    color: #9ca3af;
    margin-right: 0.25rem;
    font-size: 0.9rem;
    font-weight: normal;
}

.product-price ins {
    text-decoration: none;
    color: var(--text-main-light);
    /* Dark color for price as per image */
}

/* Bottom Button Styles */
.product-card .btn-dark {
    background-color: var(--text-main-light);
    border-color: var(--text-main-light);
    transition: all 0.3s ease;
}

.product-card .btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}


/* Header Floating Popups */
.dropdown-hover {
    position: relative;
    /* Ensure z-index is high enough */
}

/* Show popup on hover */
.dropdown-hover:hover .header-popup,
.dropdown-hover:focus-within .header-popup {
    display: block !important;
    animation: fadeInUp 0.2s ease-out forwards;
}

.header-popup {
    /* Base styles are in utility classes, adding specific override if needed */
    display: none;
}

/* Invisible bridge to prevent pointer events form falling through the gap */
.header-popup::before {
    content: '';
    position: absolute;
    top: -16px;
    /* slightly more than mt-2 (0.5rem = 8px) just to be safe, or match exact gap */
    left: 0;
    right: 0;
    height: 16px;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Side Cart Drawer Styles */
#side-drawer-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /* Modern darkening */
    backdrop-filter: blur(2px);
    /* Blur effect like the image */
}

/* Side Drawers (Generic) */
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background-color: #fff;
    z-index: 1051;
    /* Higher than backdrop (1050) */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.side-drawer.open {
    transform: translateX(0);
}

@media (max-width: 576px) {
    .side-drawer {
        width: 85%;
    }
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

/* Enhanced Mini Cart Widget for Sidebar */
.widget_shopping_cart_content ul.cart_list,
.widget_shopping_cart_content ul.product_list_widget {
    max-height: none !important;
    overflow: visible;
}

/* Base Item Style */
.widget_shopping_cart_content li.mini_cart_item {
    padding: 1.25rem !important;
    /* Slightly compact padding */
    border-bottom: 1px solid var(--border-light);
}

/* Image */
.widget_shopping_cart_content li.mini_cart_item img {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Remove Button - Positioned in PHP now, but valid override here if needed */
.widget_shopping_cart_content li.mini_cart_item a.remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-sub-light) !important;
    font-size: 1.25rem;
    width: auto;
    height: auto;
    line-height: 1;
    text-decoration: none;
}

.widget_shopping_cart_content li.mini_cart_item a.remove:hover {
    color: #FF4444 !important;
    transform: scale(1.1);
}

/* Quantity / Metadata */
.widget_shopping_cart_content li.mini_cart_item .quantity {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Hide the default "Uploaded Files" in the variation list since we render it manually */
.widget_shopping_cart_content .variation-Uploaded-Files,
.widget_shopping_cart_content .variation-Uploaded-File,
.widget_shopping_cart_content .variation-uploaded-files,
.widget_shopping_cart_content .variation-uploaded-file {
    display: none !important;
}

/* Custom Files Block */
.copyme-custom-files {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

/* Total Section */
.widget_shopping_cart_content .total {
    background-color: var(--background-light);
    border-top: 1px dashed var(--border-light);
    padding: 1rem 1.5rem;
}

.widget_shopping_cart_content .total strong {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.widget_shopping_cart_content .total .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main-light);
}

/* Buttons Container */
.widget_shopping_cart_content .buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.widget_shopping_cart_content .buttons a {
    width: 100%;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px;
    text-decoration: none;
}

/* Checkout Button */
.widget_shopping_cart_content .buttons a.checkout {
    background: var(--primary-gradient);
    color: white;
}

.widget_shopping_cart_content .buttons a.checkout:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    color: white;
}

/* View Cart Button compatibility */
.widget_shopping_cart_content .buttons a:not(.checkout) {
    background-color: white;
    color: var(--text-main-light);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.widget_shopping_cart_content .buttons a:not(.checkout):hover {
    background-color: var(--background-light);
    border-color: var(--border-dark);
}

/* Tiled Categories */
.cat-tile {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    /* ~ rounded-4 */
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.cat-tile-img-wrapper {
    background-color: var(--background-dark);
    /* Placeholder bg */
}

.cat-tile-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-tile:hover .cat-tile-img {
    transform: scale(1.08);
    /* Subtle zoom */
}


.cat-tile-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* =========================================
   Custom Login / Register Page Styles
   ========================================= */

.custom-login-wrapper {
    display: flex;
    max-width: 1000px;
    min-height: 600px;
    margin: 4rem auto;
    background: var(--surface-light);
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: relative;
}

/* Left Decoration Side */
.login-decoration-side {
    flex: 1;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.login-decoration-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
}

.decoration-content {
    position: relative;
    z-index: 2;
}

.decoration-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.decoration-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 300px;
}

/* Right Form Side */
.login-form-side {
    flex: 1.2;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    background-color: var(--surface-light);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.auth-tab {
    background: none;
    border: none;
    padding: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-sub-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tab:hover {
    color: var(--primary-color);
}

.auth-tab.active {
    color: var(--text-main-light);
    border-bottom-color: var(--primary-color);
}

/* Form Styling */
.login-form-content h2,
.register-form-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main-light);
    font-size: 0.95rem;
}

.form-group .form-control,
.woocommerce-form-row .input-text {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: var(--background-light);
    color: var(--text-main-light);
}

.form-group .form-control:focus,
.woocommerce-form-row .input-text:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(24, 90, 204, 0.1);
    background-color: var(--surface-light);
}

/* Actions Row (Remember Me / Lost PW) */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-actions label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-sub-light);
}

.lost_password a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.lost_password a:hover {
    text-decoration: underline;
}

/* Buttons */
.form-submit-row .btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}


/* Responsive */
@media (max-width: 768px) {
    .custom-login-wrapper {
        flex-direction: column;
        margin: 2rem 1rem;
        min-height: auto;
    }

    .login-decoration-side {
        padding: 2rem;
        min-height: 200px;
    }

    .login-form-side {
        padding: 2rem;
    }
}

/* Hide default page title on Account Page when not logged in (Clean Login) */
body.woocommerce-account:not(.logged-in) .entry-header {
    display: none;
}


.cat-tile:hover .cat-tile-overlay {
    opacity: 0.9;
}

.cat-tile-content {
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-tile:hover .cat-tile-content {
    transform: translateY(-5px);
    /* Lift content slightly */
}

/* Visibility classes for hover (if using Tailwind utility opacity-0 etc, but standard CSS here) */
.opacity-0 {
    opacity: 0;
}

.cat-tile:hover .group-hover-opacity-100 {
    opacity: 1;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

/* =========================================
   Footer Design
   ========================================= */
.site-footer {
    background-color: #0f172a;
    background-image: linear-gradient(rgb(15, 23, 42), rgba(15, 23, 42, 0.9)), url(../images/footer1.jpeg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #cbd5e1;
    padding-top: 6rem;
    padding-bottom: 3rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Brand Section */
.footer-logo {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.footer-moto {
    line-height: 1.6;
    max-width: 320px;
    color: #94a3b8;
    font-size: 0.95rem;
    opacity: 1;
}

/* Navigation Links & Widgets */
.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.site-footer .widget ul,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .widget li,
.footer-links li {
    margin-bottom: 0.8rem;
}

.site-footer .widget a,
.footer-links a {
    color: #cbd5e1;
    /* Slate 300 for better contrast */
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.site-footer .widget a:hover,
.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter .input-group {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    /* Left padding for text */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.footer-newsletter .form-control {
    border: none;
    background: transparent;
    color: #333;
    padding: 0;
    font-size: 1rem;
    box-shadow: none !important;
    height: auto;
    min-height: auto;
}

.footer-newsletter .form-control::placeholder {
    color: #94a3b8;
}

.footer-newsletter .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.footer-newsletter .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.footer-newsletter .btn:hover {
    transform: scale(1.05);
    background-color: var(--primary-color);
}

/* Laptop Decoration Placeholder - Adjusted z-index */
.footer-decoration-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Contact & Helpline */
.footer-contact {
    position: relative;
    z-index: 1;
}

.contact-details {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.helpline-wrapper {
    margin-top: 1.5rem;
}

.helpline-number {
    font-size: 2rem;
    /* Medium Large Font */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: inline-block;
}

.helpline-number:hover {
    color: var(--primary-color) !important;
}

/* Footer Bottom Links (Horizontal Menu) */
.footer-bottom-links li {
    display: inline-block;
    margin: 0 0.5rem;
}

.footer-bottom-links li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links li a:hover {
    color: #fff;
}


/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bottom ul.list-inline li {
    margin: 0 0.2rem;
}

.footer-bottom a {
    color: #cbd5e1;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Social Icons (Circles in bottom right) */
.footer-social-icons .social-circle {
    width: 36px;
    height: 36px;
    background-color: #334155;
    /* Slate 700 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-icons .social-circle:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* =========================================
   Shop Page / Sidebar Styles
   ========================================= */

/* Sidebar Widgets */
.shop-sidebar .widget {
    background: transparent;
    margin-bottom: 2.5rem;
}

.shop-sidebar .widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main-light);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Widget Lists */
.shop-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar .widget ul li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    /* very subtle separator */
    display: block;
    /* justify-content: space-between;
    align-items: center; */
    list-style: square;
}

.shop-sidebar .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.shop-sidebar .widget ul li a {
    color: var(--text-sub-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* .shop-sidebar .widget ul.children {
    border: 1px solid var(--border-light);
    padding: 10px;
} */

.shop-sidebar .widget ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Active State (if available, e.g., current-cat) */
.shop-sidebar .widget ul li.current-cat>a,
.shop-sidebar .widget ul li.current-menu-item>a {
    color: #fff;
    font-weight: 600;
}

/* Count bubbles (WooCommerce often outputs counts) */
.shop-sidebar .widget .count {
    font-size: 0.8rem;
    background-color: var(--background-light);
    color: var(--text-sub-light);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

/* Price Slider Widget Override */
.shop-sidebar .price_slider_wrapper .ui-slider {
    background-color: var(--border-light);
    height: 4px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 1.5rem;
}

.shop-sidebar .price_slider_wrapper .ui-slider-range {
    background-color: var(--primary-color);
    height: 100%;
    position: absolute;
    top: 0;
}

.shop-sidebar .price_slider_wrapper .ui-slider-handle {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: -5px;
    position: absolute;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shop-sidebar .price_slider_amount .button {
    background-color: var(--background-light);
    color: var(--text-sub-light);
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.shop-sidebar .price_slider_amount .button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Filter By Color / Attribute Support (Generic) */
.shop-sidebar .widget_layered_nav ul li {
    border: none;
    /* remove dashed lines for attributes if desired */
}

/* Offcanvas Sidebar */
.offcanvas {
    background-color: var(--surface-light);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-light);
}

.offcanvas-title {
    font-weight: 700;
}

/* Clean up result count */
.woocommerce-result-count {
    margin: 0;
    color: var(--text-sub-light);
    font-size: 0.9rem;
}

/* Clean up ordering select */
.woocommerce-ordering select {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-main-light);
    background-color: transparent;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
}

.woocommerce-ordering select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(24, 90, 204, 0.1);
}

/* =========================================
   Global Modern Form Styles
   ========================================= */

/* Base Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="url"],
input[type="date"],
textarea,
select,
.form-control,
.form-select,
.input-text,
.woocommerce-input-wrapper .input-text {
    background-color: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main-light);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
    width: 100%;
    min-height: 50px;
}

/* Adjust height for standard select & textareas */
textarea {
    min-height: 120px;
    resize: vertical;
}

select,
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 14px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Hover State */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover,
.form-control:hover,
.form-select:hover,
.input-text:hover {
    border-color: #9CA3AF;
    background-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px -2px rgba(0, 0, 0, 0.08);
}

/* Focus State */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus,
.input-text:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(24, 90, 204, 0.15);
    outline: none;
    transform: translateY(-2px);
}

/* Qty Input Specifics */
.quantity .input-text.qty {
    min-width: 80px;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* WooCommerce specific overrides */
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    line-height: 1.5;
}

/* Select2 overrides */
.select2-container .select2-selection--single {
    height: 50px !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    background-color: var(--surface-light) !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: var(--shadow-soft) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-main-light) !important;
    padding-left: 1.2rem !important;
    font-weight: 500 !important;
}

/* Checkboxes and Radios */
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.35rem;
    height: 1.35rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background-color: var(--surface-light);
    cursor: pointer;
    vertical-align: middle;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3e%3cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px rgba(24, 90, 204, 0.3);
}

input[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3ccircle cx='12' cy='12' r='5'/%3e%3c/svg%3e");
}

/* Disabled State */
input:disabled,
textarea:disabled,
select:disabled,
.form-control:disabled {
    opacity: 0.6;
    background-color: #E5E7EB;
    cursor: not-allowed;
    box-shadow: none;
}

/* =========================================
   Ajax Feature Styles
   ========================================= */

/* Search Result Dropdown */
.header-search-result {
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050 !important;
    /* Above mostly everything */
}

.header-search-result ul {
    margin: 0;
    padding: 0;
}

.header-search-result .list-group-item {
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.header-search-result .list-group-item:last-child {
    border-bottom: none;
}

.header-search-result .list-group-item a {
    transition: background-color 0.2s;
}

.header-search-result .list-group-item a:hover {
    background-color: var(--background-light);
}

/* Home Slider Styles */
.swiper.home-slider {
    z-index: 2;
}

.home-slider .swiper-slide {
    height: auto;
    min-height: 600px;
}

.home-slider .slide-title,
.home-slider .slide-desc {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Loading State for Favorite Button */
.add-to-favorite.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.add-to-favorite.loading .material-icons-outlined {
    visibility: hidden;
}

.add-to-favorite.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid var(--text-sub-light);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Logo Size Fix */
.custom-logo-link img.custom-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* =========================================
   File Upload Styles (Multi-File & Drag-Drop)
   ========================================= */

.copyme-upload-wrapper {
    margin-bottom: 1.5rem;
}

.copyme-upload-zone {
    border: 2px dashed var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background-color: var(--surface-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copyme-upload-zone.highlight,
.copyme-upload-zone:hover {
    border-color: var(--primary-color);
    background-color: #f0f7ff;
    /* Very light primary tint */
}

.copyme-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.copyme-upload-message {
    pointer-events: none;
    /* Let clicks pass to input if needed, though we handle click manually */
}

.copyme-file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.copyme-file-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-top: 100%;
    /* Square aspect ratio */
    background-color: #eee;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.copyme-file-item.is-document {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    height: 100px;
    /* Fallback height */
}

.copyme-file-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.copyme-file-remove,
.copyme-file-view {
    position: absolute;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 14px;
    line-height: 1;
    z-index: 10;
}

.copyme-file-remove {
    right: 5px;
    background-color: rgba(220, 53, 69, 0.8);
}

.copyme-file-remove:hover {
    background-color: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.copyme-file-view {
    right: 35px;
    /* Position to the left of remove */
    background-color: rgba(24, 90, 204, 0.8);
}

.copyme-file-view:hover {
    background-color: rgba(24, 90, 204, 1);
    transform: scale(1.1);
}

.copyme-file-view span {
    font-size: 16px;
}

/* Modal Styles */
.copyme-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.copyme-modal.active {
    opacity: 1;
    visibility: visible;
}

.copyme-modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.copyme-modal-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.copyme-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

/* =========================================
   Product Card Button Hover Effect
   ========================================= */
.product-card .card-body .mt-auto .btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .card-body .mt-auto .btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================
   Hero Slider Animations & Styles
   ========================================= */

/* 1. Ken Burns / Background Zoom Effect */
.slide-bg-image {
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .slide-bg-image {
    transform: scale(1.1);
}

/* 2. Text Entrance Animations (Fade Up) */
.slide-title,
.slide-desc,
.slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Delays ensuring they appear one by one */
.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
    color: var(--surface-light);
}

.swiper-slide-active .slide-desc {
    opacity: 0.9;
    /* Match original opacity */
    transform: translateY(0);
    transition-delay: 0.5s;
}

.swiper-slide-active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* 3. Custom Pagination Dots */
.home-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50px;
    /* Pill shape potential */
    margin: 0 6px !important;
}

.home-slider .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    /* Expand active dot */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Fix Swiper Fade overlaying issues sometimes */
.home-slider .swiper-slide {
    z-index: 1;
}

.home-slider .swiper-slide-active {
    z-index: 2;
}

/* =========================================
   Category Dropdown Styles
   ========================================= */
.dropdown-category-wrapper {
    z-index: 1100;
    /* Ensure button is above other things */
}

/* Toggle Button Hover */
.dropdown-category-toggle:hover {
    /* background-color: #e63939 !important; */
    /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 71, 71, 0.4) !important;
    transition: all 0.3s ease;
}

/* Main Menu Hover Visibility */
.dropdown-category-wrapper:hover .dropdown-category-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* List Item Hover */
.dropdown-category-list>li>a:hover {
    background-color: var(--background-light);
    color: var(--primary-color) !important;
}

.dropdown-category-list>li>a:hover .material-icons-outlined {
    color: var(--primary-color) !important;
}

/* Submenu Handling */
.dropdown-category-list>li:hover>.category-submenu {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Invisible Bridge for Submenu (prevent closing when moving cursor across gap) */
.category-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    /* Cover the ms-1 and potential gap */
    width: 20px;
    /* background: red; opacity: 0.1; /* Debugging */
}

/* Scrollbar for long lists */
.dropdown-category-list,
.category-submenu>ul {
    max-height: 60vh;
    /* overflow-y: auto; */
}

/* Scrollbar styling */
.dropdown-category-list::-webkit-scrollbar,
.category-submenu>ul::-webkit-scrollbar {
    width: 5px;
}

.dropdown-category-list::-webkit-scrollbar-track,
.category-submenu>ul::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-category-list::-webkit-scrollbar-thumb,
.category-submenu>ul::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}

.dropdown-category-list::-webkit-scrollbar-thumb:hover,
.category-submenu>ul::-webkit-scrollbar-thumb:hover {
    background: var(--text-sub-light);
}

/* Ensure text truncation for long names */
.dropdown-category-list a,
.category-submenu a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* =========================================
   Categories Carousel Styles
   ========================================= */

/* Navigation Container */
.categories-next,
.categories-prev {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.categories-next::after,
.categories-prev::after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

/* Gradient Border Circle */
.gradient-border-wrapper {
    background: linear-gradient(135deg, #d53369 0%, #daae51 100%);
    /* Gold/Pink gradient or match exact image if possible: #FF0080 -> #7928CA */
    background: linear-gradient(135deg, #FF0080 0%, #7928CA 100%);
    /* Pink/Purple Modern */
    padding: 3px;
    /* Thickness of the border */
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy effect */
    box-shadow: 0 10px 25px -5px rgba(121, 40, 202, 0.2);
    position: relative;
    z-index: 1;
}

.gradient-border-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-wrapper:hover .gradient-border-wrapper {
    transform: scale(1.08) translateY(-5px);
}

.item-wrapper:hover .gradient-border-wrapper::before {
    opacity: 0.6;
    /* Glow effect */
}

/* Badge Adjustment */
.item-wrapper .badge {
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.02em;
    min-width: 80px;
}

/* Allow swiper overflow for shadows/scales */
.categories-swiper {
    padding: 30px 10px !important;
    /* Increased padding to accommodate shadows/badges without overflow:visible */
}

.categories-swiper .swiper-wrapper {
    align-items: center;
    /* Center vertically if sizes differ */
}

/* Enforce consistent size */
.category-inner-box {
    width: 180px;
    height: 180px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    /* Ensure centering works if block */
    position: relative;
    z-index: 2;
    /* Sit on top of gradient padding */
    overflow: hidden;
    padding: 15px;
}

.category-inner-box img {
    border-radius: 50%;

}

@media (min-width: 1200px) {
    .category-inner-box {
        width: 240px;
        height: 240px;
    }
}

/* Ensure gradient wrapper shrinks to fit content */
.gradient-border-wrapper {
    display: inline-flex !important;
    /* Fix inline-block alignment issues */
    justify-content: center;
    align-items: center;
}

/* Process Cards */
.process-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-width: 1px;
    /* Start thin */
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1) !important;
}

/* Specific Border Colors if not using Bootstrap utilities or want custom */
.border-info {
    border-color: #0dcaf0 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-success {
    border-color: #198754 !important;
}

/* Icon Wrapper */
.process-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.process-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Hover Lift Utility */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

/* Group Hover Utilities */
.group:hover .group-hover-bg-danger {
    background-color: var(--danger-color) !important;
}

.group:hover .group-hover-text-white {
    color: #fff !important;
}

.group:hover .group-hover-text-danger {
    color: var(--danger-color) !important;
}

.transition-colors {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Section: How We Do It (Modernized) --- */
.section-how-it-works {
    background-color: #fff;
}

/* Feature Items */
.feature-item {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.feature-item:hover {
    background-color: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px);
    border-color: transparent !important;
}

/* Step Cards */
.step-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.step-card:hover #step-card-line {
    height: 4px !important;
}

.step-card .icon-box {
    transition: all 0.3s ease;
}

.step-card:hover .icon-box {
    transform: scale(1.1);
    background-color: var(--bs-primary) !important;
}

/* Typography refinements */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.bg-menu-all {
    background-color: var(--background-off-white) !important;
}

.btn-enquire {
    min-width: 290px;
}

/* Step Connector Lines (Desktop Only) */
@media (min-width: 992px) {
    .step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -30px;
        width: 60px;
        height: 2px;
        background-image: linear-gradient(to right, var(--bs-primary) 50%, transparent 50%);
        background-size: 10px 1px;
        background-repeat: repeat-x;
        z-index: 0;
        transform: translateY(-50%);
        opacity: 0.3;
    }

    /* Hide connector for every 2nd item (end of row) and last item */
    .col:nth-child(2n) .step-card::after,
    .col:last-child .step-card::after {
        display: none;
    }
}

/* Trending Card Utilities */
.group-hover-scale-110:hover,
.group:hover .group-hover-scale-110 {
    transform: scale(1.1);
}

.group-hover-opacity-100:hover,
.group:hover .group-hover-opacity-100 {
    opacity: 1 !important;
}

.transform-scale-0 {
    transform: scale(0);
}

.group-hover-scale-100:hover,
.group:hover .group-hover-scale-100 {
    transform: scale(1);
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.fs-8 {
    font-size: 0.75rem;
}

header .menu {
    padding: 0;
}

header .menu li {
    margin: 10px 0;
    list-style: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

header .menu li a {
    list-style: none;
    text-decoration: none;
    padding: 10px 0;
}

.background-light {
    background-color: var(--background-off-white);
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu {
    top: 65px;
    padding: 15px;
}

/* START Mobile Menu Drawer Styles */
.mobile-menu-drawer .mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-drawer .mobile-nav li a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-main-light);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    transition: all 0.2s ease;
}

/* Remove border from last item */
.mobile-menu-drawer .mobile-nav>ul>li:last-child>a {
    border-bottom: none;
}

.mobile-menu-drawer .mobile-nav li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Submenu Styling */
.mobile-menu-drawer .mobile-nav .sub-menu {
    padding-left: 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-left: 2px solid var(--border-light);
    margin: 0.25rem 0 0.5rem 0;
}

.mobile-menu-drawer .mobile-nav .sub-menu li a {
    font-size: 0.95rem;
    color: var(--text-sub-light);
    border-bottom: none;
    padding: 0.5rem 0;
}

.mobile-menu-drawer .mobile-nav .sub-menu li a:hover {
    color: var(--primary-color);
}

/* Current Item Highlighting */
.mobile-menu-drawer .mobile-nav .current-menu-item>a,
.mobile-menu-drawer .mobile-nav .current_page_item>a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Search Form overrides in Drawer */
.mobile-menu-drawer .search-form-ajax .form-control {
    font-size: 1rem;
    height: 48px;
}

/* User Links in Drawer */
.mobile-menu-drawer .d-flex.flex-column.gap-3 a {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
}

.mobile-menu-drawer .d-flex.flex-column.gap-3 a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* END Mobile Menu Drawer Styles */

/* =========================================
   Blog Styles
   ========================================= */

/* Blog Archive Styles */
.blog-archive .archive-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Card Styles */
.blog-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

.blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.blog-card-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.08);
}

/* Blog Meta */
.blog-meta {
    font-size: 0.875rem;
}

.blog-meta a:hover {
    color: var(--primary-color) !important;
}

/* Blog Excerpt */
.blog-excerpt {
    line-height: 1.7;
}

/* Pagination Styles */
.pagination .page-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    color: var(--text-main-light);
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.pagination .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination .page-link span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Single Post Styles */
.single-post .post-featured-image {
    margin-top: -80px;
    /* Offset for fixed header */
}

.single-post .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.single-post .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Post Content Typography */
.post-content .post-body,
.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main-light);
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-main-light);
}

.post-body h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.post-body h3 {
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.post-body a:hover {
    color: #1a2d69;
}

.post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-sub-light);
    background: var(--background-off-white);
    padding: 1.5rem;
    border-radius: 4px;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.post-body pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-body code {
    background: var(--background-off-white);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.post-body pre code {
    background: transparent;
    padding: 0;
}

/* Post Taxonomies */
.post-taxonomies .badge {
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.post-taxonomies .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Social Share Buttons */
.social-share-buttons {
    position: sticky;
    top: 100px;
}

.social-share-btn {
    background-color: var(--background-off-white);
    border: 1px solid var(--border-light);
    color: var(--text-main-light);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.social-share-btn:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.social-share-btn.facebook:hover {
    border-color: #1877F2;
}

.social-share-btn.facebook:hover .social-icon-wrapper {
    background-color: #1877F2;
    color: #fff;
}

.social-share-btn.twitter:hover {
    border-color: #1DA1F2;
}

.social-share-btn.twitter:hover .social-icon-wrapper {
    background-color: #1DA1F2;
    color: #fff;
}

.social-share-btn.linkedin:hover {
    border-color: #0A66C2;
}

.social-share-btn.linkedin:hover .social-icon-wrapper {
    background-color: #0A66C2;
    color: #fff;
}

.social-share-btn.whatsapp:hover {
    border-color: #25D366;
}

.social-share-btn.whatsapp:hover .social-icon-wrapper {
    background-color: #25D366;
    color: #fff;
}

.social-share-btn.copy-link:hover {
    border-color: var(--primary-color);
}

.social-share-btn.copy-link:hover .social-icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
}

.social-share-btn.copied .social-icon-wrapper {
    background-color: var(--success-color);
    color: #fff;
}

.social-icon-wrapper {
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

/* Author Bio */
.author-bio {
    border-left: 4px solid var(--primary-color);
}

.author-bio:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Related Posts Section */
.related-posts {
    margin-top: 4rem;
}

.related-posts .blog-card {
    height: 100%;
}

.related-posts .blog-card-img-wrapper {
    height: 200px;
}

/* Comments Section */
.post-comments .comment-list {
    list-style: none;
    padding-left: 0;
}

.post-comments .comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background-color: var(--background-off-white);
}

.post-comments .comment-author {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-comments .comment-metadata {
    font-size: 0.875rem;
    color: var(--text-sub-light);
    margin-bottom: 1rem;
}

.post-comments .comment-content {
    line-height: 1.7;
}

.post-comments .reply {
    margin-top: 1rem;
}

.post-comments .reply a {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.post-comments .reply a:hover {
    text-decoration: underline;
}

.post-comments .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

/* Comment Form */
.comment-respond {
    margin-top: 2rem;
}

.comment-respond .comment-form {
    display: grid;
    gap: 1rem;
}

.comment-respond .comment-form-comment textarea,
.comment-respond .comment-form input[type="text"],
.comment-respond .comment-form input[type="email"],
.comment-respond .comment-form input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.comment-respond .comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-respond .comment-form input:focus,
.comment-respond .comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(36, 62, 139, 0.1);
}

.comment-respond .form-submit input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-respond .form-submit input[type="submit"]:hover {
    background-color: #1a2d69;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 62, 139, 0.3);
}

/* Sidebar Categories Widget */
.post-sidebar .widget_categories ul {
    list-style: none;
    padding-left: 0;
}

.post-sidebar .widget_categories ul li {
    border-bottom: 1px solid var(--border-light);
}

.post-sidebar .widget_categories ul li:last-child {
    border-bottom: none;
}

.post-sidebar .widget_categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text-main-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-sidebar .widget_categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.post-sidebar .widget_categories .count {
    background: var(--background-off-white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-sub-light);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .single-post .post-sidebar {
        margin-top: 3rem;
    }

    .social-share-buttons {
        position: static;
    }

    .single-post .post-featured-image {
        margin-top: 0;
        height: 400px !important;
    }
}

@media (max-width: 767px) {
    .blog-archive .row {
        row-gap: 1.5rem;
    }

    .single-post .post-featured-image {
        height: 300px !important;
    }

    .post-content .post-body,
    .post-body {
        font-size: 1rem;
    }

    .post-body h2 {
        font-size: 1.5rem;
    }

    .post-body h3 {
        font-size: 1.25rem;
    }
}

/* Hover Effects */
.hover-text-primary:hover {
    color: var(--primary-color) !important;
}

.hover-bg-light:hover {
    background-color: var(--background-off-white) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-colors {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero Section - Modern & Creative */
.contact-hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-hero-bg {
    background-image: url('../images/hero-print.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(1px);
}

.contact-hero-overlay {
    background: radial-gradient(ellipse at top left,
            rgba(56, 182, 217, 0.15) 0%,
            rgba(255, 255, 255, 0.95) 40%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(230, 59, 142, 0.1) 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

.min-vh-60 {
    min-height: 60vh;
}

/* Animated Particles */
.hero-particles {
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.particle-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 8%;
    animation-delay: 4s;
    animation-duration: 30s;
}

.particle-4 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.particle-5 {
    width: 35px;
    height: 35px;
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 28s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
    }
}

/* Geometric Decorative Shapes */
.hero-shapes {
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.08;
}

.shape-circle {
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.shape-square {
    border: 3px solid var(--accent-magenta);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--secondary-color);
    opacity: 0.06;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 10%;
    animation: rotate 30s linear infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 5%;
    animation: rotate 25s linear infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 8%;
    animation: pulse 4s ease-in-out infinite;
}

.shape-4 {
    top: 15%;
    right: 20%;
    animation: float 15s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(45deg);
        opacity: 0.08;
    }

    50% {
        transform: scale(1.1) rotate(45deg);
        opacity: 0.12;
    }
}

/* Hero Badge */
.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(36, 62, 139, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease-out;
    color: var(--primary-color);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Gradient Text Effects */
.gradient-text-primary {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftPrimary 8s ease infinite;
    background-size: 200% 200%;
}

.gradient-text-secondary {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftSecondary 8s ease infinite;
    background-size: 200% 200%;
}

/* Legacy support */
.gradient-text {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShiftPrimary {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientShiftSecondary {

    0%,
    100% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Contact Hero Content Animations */
.contact-hero-content {
    animation: fadeInUp 1s ease-out;
}

.contact-hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Wave SVG */
.hero-wave {
    z-index: 5;
    height: 120px;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero CTA Buttons */
.hero-cta .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d69 100%);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-outline-dark {
    border: 2px solid var(--text-main-light);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-dark:hover {
    background: var(--text-main-light);
    color: white !important;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Contact Form 7 Overrides */
.contact-form-wrapper .wpcf7-form label,
.contact-form-fallback label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main-light);
    font-weight: 600;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="url"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-fallback input[type="text"],
.contact-form-fallback input[type="email"],
.contact-form-fallback input[type="tel"],
.contact-form-fallback select,
.contact-form-fallback textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--background-light);
    color: var(--text-main-light);
    font-family: var(--font-body);
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus,
.contact-form-fallback input:focus,
.contact-form-fallback select:focus,
.contact-form-fallback textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(36, 62, 139, 0.1);
    background-color: #fff;
}

.contact-form-wrapper .wpcf7-form select,
.contact-form-fallback select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23243E8B' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
    cursor: pointer;
}

.contact-form-wrapper .wpcf7-form textarea,
.contact-form-fallback textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button - Matching Theme Primary */
.contact-form-wrapper .wpcf7-form input[type="submit"],
.contact-form-wrapper .wpcf7-submit {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 0 !important;
    /* Rectangular like theme buttons */
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    font-family: var(--font-heading) !important;
    box-shadow: none !important;
    /* No shadow by default, matching theme */
    position: relative !important;
    overflow: hidden !important;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover,
.contact-form-wrapper .wpcf7-submit:hover {
    background-color: #1a2d69 !important;
    /* Darker blue on hover */
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(36, 62, 139, 0.3) !important;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:active,
.contact-form-wrapper .wpcf7-submit:active {
    transform: translateY(0) !important;
}

/* Fallback Contact Form Submit Button - Vibrant Gradient */
.contact-form-fallback button[type="submit"] {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--primary-color) 50%,
            var(--accent-magenta) 100%);
    background-size: 200% 200%;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0;
    /* Rectangular like theme */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(36, 62, 139, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-fallback button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.contact-form-fallback button[type="submit"]:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 62, 139, 0.35);
}

.contact-form-fallback button[type="submit"]:hover::before {
    left: 100%;
}

.contact-form-fallback button[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(36, 62, 139, 0.25);
}

/* Loading state for fallback button */
.contact-form-fallback button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* CF7 Response Messages */
.contact-form-wrapper .wpcf7-response-output {
    margin: 1.5rem 0 0;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
    font-weight: 500;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
    animation: slideInFromBottom 0.5s ease-out;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.contact-form-wrapper .wpcf7-form .wpcf7-not-valid {
    border-color: var(--danger-color) !important;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.contact-form-wrapper .wpcf7-spinner {
    margin-left: 1rem;
}

/* Info Cards */
.contact-info-grid {
    position: relative;
}

.info-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: default;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(36, 62, 139, 0.1);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Color-coded icons */
.info-card-address .info-card-icon {
    background-color: rgba(36, 62, 139, 0.1);
    color: var(--primary-color);
}

.info-card-phone .info-card-icon {
    background-color: rgba(56, 182, 217, 0.1);
    color: var(--secondary-color);
}

.info-card-email .info-card-icon {
    background-color: rgba(230, 59, 142, 0.1);
    color: var(--accent-magenta);
}

.info-card-hours .info-card-icon {
    background-color: rgba(245, 197, 66, 0.1);
    color: var(--accent-yellow);
}

.info-card h5 {
    font-size: 1.125rem;
    color: var(--text-main-light);
}

.info-card a {
    transition: color 0.2s ease;
}

.info-card a:hover {
    color: var(--primary-color) !important;
}

/* Google Map Section */
.contact-map-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
    }

    .contact-hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-wave {
        height: 60px;
    }

    /* Hide some particles on mobile */
    .particle-3,
    .particle-5,
    .particle-6 {
        display: none;
    }

    .shape-1,
    .shape-4 {
        display: none;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem !important;
    }

    .info-card {
        padding: 1.25rem !important;
    }

    .contact-map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-wave {
        height: 40px;
    }

    .contact-form-wrapper .wpcf7-form input[type="submit"],
    .contact-form-wrapper .wpcf7-submit,
    .contact-form-fallback button[type="submit"] {
        width: 100%;
        padding: 1rem 2rem !important;
    }

    .info-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-map-wrapper {
        height: 300px;
    }
}

/* Utility Classes */
.hover-primary {
    transition: color 0.2s ease;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Success Animation */
.form-success-state {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInScale 0.5s ease-out;
}

.form-success-state.active {
    display: block;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.success-checkmark .material-icons-outlined {
    font-size: 3rem;
    color: var(--success-color);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* ===================================================
   CONTACT PAGE MODERN ENHANCEMENTS
   =================================================== */

/* Floating Decorative Elements */
.hero-float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 182, 217, 0.15), rgba(36, 62, 139, 0.15));
    animation: floatUpDown 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-float-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-duration: 22s;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -80px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.hero-float-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 4s;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.05);
    }

    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.95);
    }

    75% {
        transform: translateY(-30px) translateX(-20px) scale(1.03);
    }
}

/* Enhanced Hero Tagline */
.hero-tagline {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(36, 62, 139, 0.08);
    border-radius: 50px;
    animation: slideInFromTop 0.8s ease-out;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description Animation */
.hero-description {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Contact Content Section Background */
.contact-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(36, 62, 139, 0.1) 20%,
            rgba(36, 62, 139, 0.1) 80%,
            transparent);
}

/* Enhanced Contact Form Wrapper */
.contact-form-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(36, 62, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(56, 182, 217, 0.03),
            transparent);
    transition: left 0.6s ease;
}

.contact-form-wrapper:hover::before {
    left: 100%;
}

/* Form Header Icon Wrapper */
.form-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(36, 62, 139, 0.1), rgba(56, 182, 217, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-icon-wrapper .material-icons-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover .form-icon-wrapper {
    transform: rotate(5deg) scale(1.05);
    background: linear-gradient(135deg, rgba(36, 62, 139, 0.15), rgba(56, 182, 217, 0.15));
}

.contact-form-wrapper:hover .form-icon-wrapper .material-icons-outlined {
    transform: scale(1.1);
}

/* Info Card Modern Enhancements */
.info-card-inner {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(36, 62, 139, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-inner {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(36, 62, 139, 0.15);
}

/* Gradient border top on hover for each card type */
.info-card-address:hover .info-card-inner::before {
    background: linear-gradient(90deg, var(--primary-color), rgba(36, 62, 139, 0.5));
}

.info-card-phone:hover .info-card-inner::before {
    background: linear-gradient(90deg, var(--secondary-color), rgba(56, 182, 217, 0.5));
}

.info-card-email:hover .info-card-inner::before {
    background: linear-gradient(90deg, var(--accent-magenta), rgba(230, 59, 142, 0.5));
}

.info-card-hours:hover .info-card-inner::before {
    background: linear-gradient(90deg, var(--accent-yellow), rgba(245, 197, 66, 0.5));
}

/* Enhanced Icon Backgrounds with Gradient */
.info-card-icon {
    position: relative;
    background: linear-gradient(135deg, rgba(36, 62, 139, 0.1), rgba(36, 62, 139, 0.05));
    backdrop-filter: blur(10px);
}

.info-card-address .info-card-icon {
    background: linear-gradient(135deg, rgba(36, 62, 139, 0.12), rgba(36, 62, 139, 0.08));
}

.info-card-phone .info-card-icon {
    background: linear-gradient(135deg, rgba(56, 182, 217, 0.12), rgba(56, 182, 217, 0.08));
}

.info-card-email .info-card-icon {
    background: linear-gradient(135deg, rgba(230, 59, 142, 0.12), rgba(230, 59, 142, 0.08));
}

.info-card-hours .info-card-icon {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.12), rgba(245, 197, 66, 0.08));
}

/* Phone and Email Link Enhancements */
.phone-link,
.email-link {
    position: relative;
    transition: all 0.3s ease;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.phone-link:hover::after,
.email-link:hover::after {
    width: 100%;
}

/* Hours List Styling */
.hours-list {
    font-size: 0.9375rem;
}

.hours-list br+br {
    display: none;
}

/* Modern Map Wrapper */
.contact-map-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-map-wrapper iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.contact-map-wrapper:hover iframe {
    filter: grayscale(0);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.scroll-reveal[data-delay="100"].revealed {
    transition-delay: 0.1s;
}

.scroll-reveal[data-delay="200"].revealed {
    transition-delay: 0.2s;
}

.scroll-reveal[data-delay="300"].revealed {
    transition-delay: 0.3s;
}

.scroll-reveal[data-delay="400"].revealed {
    transition-delay: 0.4s;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .hero-float-element,
    .hero-tagline,
    .scroll-reveal,
    .particle,
    .shape {
        animation: none !important;
        transition: none !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-float-element {
        display: none;
    }

    .form-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .form-icon-wrapper .material-icons-outlined {
        font-size: 1.5rem;
    }

    .form-header .ms-5.ps-4 {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .contact-map-wrapper {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    width: 100% !important;
}

.woocommerce-additional-fields {
    margin-top: 60px;
}
#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
    padding: 1em!important;
}
.single-product button.single_add_to_cart_button,
.single-product .add_to_cart_button {
    display: none !important;
}
.single-product .quantity {
    display: none !important;
}
span.price-contact {
    border: 1px solid;
    padding: 6px 12px;
    background: yellow;
    border-radius: 34px;
    font-size: 14px;
}

.display-none{
    display: none!important;
}

.textarea{
    height:100px;
}