@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/SpaceGrotesk-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/SpaceGrotesk-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/SpaceGrotesk-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

:root {
    --primary: #05A4DE;
    --secondary: #ED821A;
    --font-color: #0E0F15;
    --accent: #505561;
    --white: #ffffff;
    --border: #DADADA;
    --font-family: 'Space Grotesk', sans-serif;
    --font-secondary: 'Switzer', sans-serif;
    --base-bg: #F5F6FA;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    font-size: 16px;
}

p {
    font-family: var(--font-secondary);
    font-weight: 300;
}

.section-spacing {
    margin: clamp(30px, 8vw, 120px) 0;
}

.section-padding {
    padding: clamp(30px, 8vw, 120px) 0;
}

h1,
.h1 {
    font-size: clamp(40px, 5vw, 72px);
    color: var(--font-color);
    font-weight: bold;
}

h2 {
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--font-color);
    letter-spacing: -1px;
}

h3,
.h3 {
    font-size: clamp(21px, 4vw, 42px);
}

/* --- Premium Theme Styles --- */
.text-primary-theme {
    color: var(--primary) !important;
}

.text-secondary-theme {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent);
}

.text-font-color {
    color: var(--font-color);
}

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

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

.cta-section .breadcrumb-item+.breadcrumb-item::before {
    color: var(--base-bg);
}

.fs-18 {
    font-size: 18px;
}

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

label {
    font-family: var(--font-secondary);
    font-size: 18px;
}

.fw-regular {
    font-weight: 400;
}

.form-select,
.form-control {
    font-family: var(--font-secondary);
    padding: 15px 20px;
    border-radius: 10px;
}

.form-check input[type="checkbox" i] {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.form-select:focus,
.form-control:focus {
    box-shadow: none;
}

.form-label {
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--font-color);
}

/* Buttons */
.btn-theme-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-theme-light {
    background-color: #D7D8DA;
    color: var(--font-color);
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-secondary {
    border-radius: 10px;
}

.btn-theme-light:hover {
    background-color: #b8b8b8;
}

.btn-theme-primary:hover,
.btn-theme-primary:focus {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(25, 64, 129, 0.25);
}

.btn-theme-outline {
    border: 1px solid var(--border);
    color: var(--font-color);
    background: transparent;
    transition: all 0.3s ease;
    padding: 10px;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-theme-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(25, 64, 129, 0.05);
}

.main-wrapper,
.site-main {
    padding: 0 clamp(10px, 3vw, 30px);
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    background-color: var(--white) !important;
    transition: all 0.3s ease-in-out;
}

.navbar.header-scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    max-width: clamp(50px, 10vw, 70px);
}

.nav-link {
    color: var(--font-color);
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 500;
}

/* Hero Section */
.max-748 {
    max-width: 748px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-card {
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: calc(79vh);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: .5;
}

.hero-card .btn-theme-primary,
.hero-card .btn-hero-secondary {
    padding: 10px 20px;
}

.hero-badge {
    border: 1px solid #C6C7C9;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.hero-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

.hero-title span {
    color: var(--secondary);
}

h1 span,
h2 span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-features {
    font-weight: 500;
}

.hero-features i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* About Section */
.common-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 19px;
    border: 1px solid #C6C7C9;
    border-radius: 50px;
    color: var(--font-color);
}

.inline-img-pill {
    display: inline-block;
    width: clamp(80px, 12vw, 160px);
    height: clamp(35px, 5vw, 70px);
    border-radius: 40px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 0.1em;
    transform: translateY(-0.1em);
}

.inline-img-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: baseline;
}

.stat-item {
    position: relative;
    padding: 1rem 0;
}

.stat-number {
    font-size: clamp(25px, 4vw, 60px);
    font-weight: 700;
    color: var(--font-color);
}

/* Services Section */
.services-wrapper {
    background-color: #EEEEEE;
    border-radius: 20px;
    position: relative;
}

.services-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../images/services-after.png') no-repeat;
    height: 335px;
    width: 365px;
    opacity: 0.5;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
}

.service-list-item {
    padding: 20px;
    background: var(--white);
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.service-list-item:last-child {
    border-bottom: 1px solid var(--border);
}

.service-deco-img {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    transform: translateX(-1rem);
}

.service-main-img {
    max-height: 790px;
}

/* How It Works Section */
.how-it-works-section p {
    font-weight: 400 !important;
}

.step-img-wrapper {
    width: 200px;
    height: 200px;
    padding: 8px;
    background-color: #F5F6FA;
    border-radius: 50%;
}

.step-img-wrapper img {
    border-radius: 50%;
}

.step-number {
    width: 52px;
    height: 52px;
    top: -2px;
    right: 14px;
    font-size: 1.5rem;
    z-index: 2;
    font-family: var(--font-secondary);
    font-weight: 400;
}

.step-arrow {
    top: 30%;
    right: -15%;
    width: 30%;
    transform: translateY(-30%);
    z-index: 0;
    pointer-events: none;
}

.step-arrow img,
.step-arrow svg {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: drawArrow 3s ease-in-out infinite;
}

@keyframes drawArrow {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    60%,
    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* Products Section */
.products-section {
    background-color: #F6F3F1;
    border-radius: 20px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: rgb(80 85 97 / 20%) !important;
    border-radius: 20px;
}

.product-card a {
    color: var(--font-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.product-card .btn-theme-primary {
    padding: 6px 20px;
}

.product-img {
    min-height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(142, 142, 145, 0.15) 0%, #8E8E91 50%, rgba(142, 142, 145, 0.15) 100%) 1;
}

.product-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 12px;
    color: var(--white);
    background-color: #EB7476;
    border: 1px solid var(--border);
    width: max-content;
    border-radius: 20px;
    position: absolute;
}

/* Blog Section */
.blog-card {
    min-height: 530px;
    cursor: pointer;
    border-radius: 20px;
}

.blog-card a {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-secondary);
}


.blog-card img {
    transition: transform 0.6s ease;
}

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

.blog-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.95) 100%);
    transition: background 0.3s ease;
    padding: clamp(10px, 3vw, 30px);
}

.blog-card:hover .blog-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 1) 100%);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    max-height: 598px;
}

.cta-section ul li {
    list-style: none;
    position: relative;
}

.cta-section ul li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -0.55rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: currentColor;
}

/* Footer Section */
.footer-bg-text {
    max-width: 1294px;
    width: 100%;
    padding: 0 10px;
}

.footer-section {
    background-image: linear-gradient(180deg, #0077A3 0%, #000F15 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-logo img {
    max-width: 250px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 300;
}

.footer-title {
    position: relative;
}

.footer-title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    bottom: -10px;
}

/* Solary SVG Animation (Aniketx27 wave effect) */
.footer-bg-text {
    max-width: 925px;
    width: 100%;
    margin: 0 auto;
}

.solary-animated {
    width: 100%;
    height: auto;
    overflow: visible;
    -webkit-box-reflect: below -30px linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.solary-animated g {
    opacity: 1 !important;
}

.solary-animated path {
    animation: glowSweep 3s linear infinite;
}

/* Staggered animation delays to create the wave effect */
.solary-animated path:nth-child(1) {
    animation-delay: 0s;
}

.solary-animated path:nth-child(2) {
    animation-delay: 0.2s;
}

.solary-animated path:nth-child(3) {
    animation-delay: 0.4s;
}

.solary-animated path:nth-child(4) {
    animation-delay: 0.6s;
}

.solary-animated path:nth-child(5) {
    animation-delay: 0.8s;
}

.solary-animated path:nth-child(6) {
    animation-delay: 1.0s;
}

.solary-animated path:nth-child(7) {
    animation-delay: 1.2s;
}

@keyframes glowSweep {

    0%,
    100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--primary)) brightness(0.8);
    }
}

/* Product Details Page */

.product-info-wrapper {
    background: #F5F6FA;
    border-radius: 20px;
}

.breadcrumb {
    font-family: var(--font-secondary);
}

.rounded-20 {
    border-radius: 20px;
}

/* Product Tabs */
.product-tabs {
    border-bottom: 1px solid #E5E7EB;
    gap: 6.25rem;
}

.product-tabs .nav-link {
    color: var(--accent);
    font-weight: 400;
    border: none;
    background: transparent;
    padding: 1rem 0;
    font-size: 1.1rem;
    position: relative;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: var(--font-color);
}

.product-tabs .nav-link.active {
    color: var(--secondary);
    text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
}

.product-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--secondary);
    border-radius: 8px 8px 0 0;
}

#productTabContent table tr td {
    color: var(--accent) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.tab-content h3 {
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: -0.5px;
}

.tab-content ul {
    list-style-type: disc;
    padding-left: 1.2rem;
}

.tab-content ul li {
    margin-bottom: 0.3rem;
    font-family: var(--font-secondary);
}

/* Service Request Form Styles */
.service-request-box {
    border-radius: 20px;
}

.priority-box {
    border: 1px solid #DEE2E6;
    transition: all 0.2s ease-in-out;
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.priority-box:hover {
    border-color: #C6C7C9;
}

.priority-box.active-priority {
    background-color: color-mix(in srgb, var(--secondary) 10%, transparent) !important;
    border-color: var(--secondary) !important;
}

.priority-box .form-check-input,
.priority-box input[type="radio"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-color: #D9D9D9;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.priority-box .form-check-input:checked,
.priority-box input[type="radio"]:checked {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    background-image: none !important;
}

.priority-box:has(input[type="radio"]:checked) {
    background-color: color-mix(in srgb, var(--secondary) 10%, transparent) !important;
    border-color: var(--secondary) !important;
}

.priority-box .wpcf7-list-item-label {
    display: none;
}

.priority-box .wpcf7-list-item {
    margin: 0;
    display: inline-block;
}

.upload-area {
    border: 1px dashed var(--border);
    background-color: #F9F9F9;
    transition: all 0.2s;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-family: var(--font-secondary);
    cursor: pointer;
}

.upload-area .wpcf7-form-control-wrap {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.upload-area small {
    color: #A4A6AC;
}

.upload-area:hover {
    border-color: var(--primary);
    background-color: #F3F4F6;
}


.stock-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(62, 169, 112, 0.3);
}

.product-image img {
    max-width: 560px;
    width: 100%;
}

.product-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.quantity-selector input[type="number"]::-webkit-inner-spin-button,
.quantity-selector input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector input[type="number"] {
    -moz-appearance: textfield;
}

.quantity-selector .btn-link {
    font-size: 1.2rem;
    color: var(--font-color) !important;
}

/* Cart Page */
.cart-section .table-responsive {
    border: 1px solid var(--border);
    border-radius: 10px;
}

.cart-section table th {
    background: var(--base-bg);
    font-family: var(--font-secondary);
    font-size: 18px;
    padding: 20px;
    color: var(--font-color);
    font-weight: 500;
}

.cart-section table tfoot {
    background: var(--base-bg);
    border-top: 1px solid var(--border);
}

.cart-section table tfoot td {
    background: #F9F9F9;
}

.cart-section table tr td {
    padding: 20px;
}

.cart-section table tr:last-child td {
    border-bottom: 0 !important;
}

.cart-image-box {
    height: 96px;
    width: 96px;
    min-width: 96px;
    background: #F5F6FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.cart-image-box img {
    width: 76px;
    height: 76px;
}

.cart-summary {
    background: var(--base-bg);
    border-radius: 20px;
    padding: 20px;
}

.control-label {
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: var(--white);
}

/* Custom Radio Button Design */
.control-label .form-check-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent) !important;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    background-color: var(--white);
    position: relative;
    margin-top: 0;
}

.control-label .form-check-input[type="radio"]:checked {
    background-color: transparent !important;
    border: 2px solid var(--primary) !important;
    background-image: none !important;
}

.control-label .form-check-input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

.coupon-code {
    flex: 1;
}

.checkout-section .form-control,
.checkout-section .form-select,
.comment-form .form-control,
.comment-form .form-select {
    padding: 15px 20px;
    background-color: var(--base-bg);
    border-color: var(--border);
    font-family: var(--font-secondary);
    color: #6C757D;
}

.pickup-info {
    padding: 20px;
    background: transparent !important;
    border-radius: 20px;
}

.checkout-prod-img {
    height: 70px;
    width: 70px;
    min-width: 70px;
    background: var(--base-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-prod-img img {
    max-width: 50px;
}

.modal .btn-close {
    position: absolute;
    z-index: 9;
    color: #fff;
    top: 0;
    right: 0;
    background: var(--primary);
    opacity: 1;
    height: 20px;
    width: 20px;
    border-radius: 0;
}

.modal .btn-close:hover {
    opacity: 1;
    color: var(--white);
    background: var(--primary);

}

.modal-dialog .rounded-20 {
    border-radius: 10px;
    outline: 4px solid var(--primary);
}

.alert.primary {
    background: var(--base-bg);
    border-radius: 10px;
    border-top: 2px solid var(--primary);
    color: var(--font-color);
}

#item-removed-alert {
    background-color: #FFF3EA;
    border-top: 3px solid var(--secondary);
    color: var(--font-color);
    border-radius: 10px;
}

.installations-list {
    padding: 0;
    list-style-position: inside;
}

.blog-tag {
    background: #DCDDDF;
    border: 1px solid var(--border);
    padding: 10px 20px;
    color: var(--font-color);
    border-radius: 10px;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.quote-box {
    background: linear-gradient(to right, rgba(0, 15, 21, 100%) 0%, rgba(0, 119, 163, 100%) 100%);
    padding: 30px;
    border-radius: 20px;
}

.quote-box p {
    font-weight: 300;
}


.ti-quote-custom-filled:before {
    content: "";
    display: inline-block;
    width: 43px;
    height: 41px;
    background-color: currentColor;
    -webkit-mask-image: url('../images/quote.svg');
    mask-image: url('../images/quote.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.comment-form .form-label {
    color: #575757;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    background-color: #E2E3E5;
    color: var(--font-color);
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.comment-avatar.admin {
    background-color: var(--primary);
    color: var(--white);
}

.comment-reply-link {
    color: var(--font-color);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.comment-reply-link:hover {
    color: var(--primary);
}

.contact-box {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: start;
    gap: 16px;
}

.contact-icon,
.upload-icon {
    height: 50px;
    width: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: #F5F6FA;
}

.map-section .map-box {
    background-color: #F9F9F9 !important;
}

.map-box {
    top: 120px;
    height: 100%;
    max-height: 710px;
}

.contact-form {
    background: var(--base-bg);
    border-radius: 20px;
}

.get-in-touch-section .get-touch-left {
    border-radius: 20px;
    background: #F9F9F9;
    padding: clamp(20px, 5vw, 50px);
}

/* categoires page */

.sidebar {
    position: sticky;
    top: 100px;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border);
    background: var(--white);
}

.product-list li {
    background: #F9F9F9;
    border-radius: 12px;
    padding: 12px;
    font-family: var(--font-secondary);
}

.product-list li ul {
    padding: 10px 10px 0;
    border-top: 1px solid var(--border);
}

.product-list li li {
    padding: 0;
}

.product-list li a,
.product-list li span {
    font-size: 16px;
}

/* Active State for Sidebar Product List */
.product-list li a.active {
    font-weight: 500 !important;
    color: var(--primary) !important;
}

#sortSelect {
    width: auto;
    max-width: 200px;
}

/* Custom Glycol Icon */
.ti-glycol {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 21h10a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -.3 -.7l-2.7 -3.3v-2h-6v2l-2.7 3.3a1 1 0 0 0 -.3 .7v6a1 1 0 0 0 1 1z'/%3E%3Cpath d='M8 8h8'/%3E%3Cpath d='M10 8v-3h4v3'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M7 16h10'/%3E%3Cpath d='M16 8c3 0 4 3 2 5'/%3E%3Cpath d='M12 5v-3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 21h10a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -.3 -.7l-2.7 -3.3v-2h-6v2l-2.7 3.3a1 1 0 0 0 -.3 .7v6a1 1 0 0 0 1 1z'/%3E%3Cpath d='M8 8h8'/%3E%3Cpath d='M10 8v-3h4v3'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M7 16h10'/%3E%3Cpath d='M16 8c3 0 4 3 2 5'/%3E%3Cpath d='M12 5v-3'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 1em;
    mask-size: 1em;
}

/* Custom Replenishing Icon */
.ti-replenishing {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4a3 3 0 0 1 6 0'/%3E%3Cpath d='M12 9v2'/%3E%3Cpath d='M9.5 7.5l-1.5 1.5'/%3E%3Cpath d='M14.5 7.5l1.5 1.5'/%3E%3Cpath d='M7 4h-2'/%3E%3Cpath d='M17 4h2'/%3E%3Cpath d='M4 20h16l-3 -7h-10z'/%3E%3Cpath d='M10.5 13l-1 7'/%3E%3Cpath d='M13.5 13l1 7'/%3E%3Cpath d='M5.5 16.5h13'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4a3 3 0 0 1 6 0'/%3E%3Cpath d='M12 9v2'/%3E%3Cpath d='M9.5 7.5l-1.5 1.5'/%3E%3Cpath d='M14.5 7.5l1.5 1.5'/%3E%3Cpath d='M7 4h-2'/%3E%3Cpath d='M17 4h2'/%3E%3Cpath d='M4 20h16l-3 -7h-10z'/%3E%3Cpath d='M10.5 13l-1 7'/%3E%3Cpath d='M13.5 13l1 7'/%3E%3Cpath d='M5.5 16.5h13'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 1em;
    mask-size: 1em;
}


/* Sticky Header 3-Color Border */
.navbar.header-scrolled::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #E02128 33.33%, var(--secondary) 33.33% 66.66%, var(--primary) 66.66%);
}

/* Custom Contact Tabs - Variant 4 (Folder Style) */
.custom-contact-tabs {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    gap: 0 !important;
    border: none;
    border-bottom: 2px solid var(--border);
}

.custom-contact-tabs .nav-item {
    margin-bottom: -2px;
}

.custom-contact-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    background-color: transparent;
    color: var(--accent);
    font-weight: 500;
    border-radius: 12px 12px 0 0;
    padding: 14px 28px;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.custom-contact-tabs .nav-link:hover {
    color: var(--primary) !important;
}

.custom-contact-tabs .nav-link.active {
    background-color: rgba(5, 164, 222, 0.1) !important;
    color: var(--primary) !important;
    border-bottom: 3px solid var(--primary) !important;
    box-shadow: none !important;
}

.faq-section {
    background: #F5F6FA;
    border-radius: 20px;
}

.privacy-policy .entry-title {
    display: none;
}

/* Custom styling for blockquotes and comments list in single post template */
.blog-details-section blockquote,
.blog-details-section .wp-block-quote {
    background: linear-gradient(to right, rgba(0, 15, 21, 100%) 0%, rgba(0, 119, 163, 100%) 100%);
    padding: 30px 30px 30px 80px;
    border-radius: 20px;
    position: relative;
    color: #fff;
    margin: 3rem 0;
    border: none;
}

.blog-details-section blockquote::before,
.blog-details-section .wp-block-quote::before {
    content: "";
    display: inline-block;
    width: 43px;
    height: 41px;
    background-color: currentColor;
    -webkit-mask-image: url('../images/quote.svg');
    mask-image: url('../images/quote.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    position: absolute;
    left: 20px;
    top: 30px;
}

.blog-details-section blockquote p,
.blog-details-section .wp-block-quote p {
    font-weight: 300;
    color: #fff !important;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.blog-details-section blockquote cite,
.blog-details-section .wp-block-quote cite {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    display: block;
    margin-top: 10px;
    font-style: italic;
}

/* Make images inside post content full width with border radius */
.blog-details-section img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.blog-details-section .wp-block-image {
    margin: 2.5rem 0;
    width: 100%;
}

.blog-details-section .wp-block-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li.comment {
    margin-bottom: 2rem;
}

.comment-list .comment-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.comment-list .comment-meta {
    flex-shrink: 0;
}

.comment-list .avatar {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background-color: #E2E3E5;
}

.comment-list .comment-content {
    flex-grow: 1;
    color: var(--accent);
    font-family: var(--font-secondary);
}

.comment-list .comment-author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-list .comment-author .fn {
    font-weight: 700;
    font-size: 1rem;
    color: var(--font-color);
    font-style: normal;
}

.comment-list .comment-author .says {
    display: none;
}

.comment-list .comment-metadata {
    font-size: 0.85rem;
    color: #6C757D;
}

.comment-list .comment-metadata a {
    color: #6C757D;
    text-decoration: none;
}

.comment-list .reply {
    margin-top: 0.5rem;
}

/* Pagination Styling */
.pagination .page-item.active .page-link {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}

.pagination .page-link:hover {
    background-color: rgba(5, 164, 222, 0.1);
    color: var(--primary) !important;
}

/* WooCommerce Custom Checkout Styling */
.woocommerce-custom-checkout-container form.woocommerce-checkout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.woocommerce-custom-checkout-container #customer_details {
    flex: 1 1 55%;
    min-width: 320px;
}

.woocommerce-custom-checkout-container #order_review_heading {
    display: none;
}

.woocommerce-custom-checkout-container #order_review {
    flex: 1 1 40%;
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 0.5rem;
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row {
    margin-bottom: 1.25rem;
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--font-color);
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row input.input-text,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row select,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row textarea {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--font-color);
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row select:focus,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(5, 164, 222, 0.25);
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row-wide {
    clear: both;
    width: 100%;
}

.woocommerce-custom-checkout-container #customer_details::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-custom-checkout-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.woocommerce-custom-checkout-container .woocommerce-checkout-review-order-table table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.woocommerce-custom-checkout-container .woocommerce-checkout-review-order-table table th,
.woocommerce-custom-checkout-container .woocommerce-checkout-review-order-table table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.woocommerce-custom-checkout-container #payment ul.wc_payment_methods {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: #F5F6FA !important;
}

.woocommerce-custom-checkout-container #payment ul.wc_payment_methods li {
    /* background: #f8f9fa; */
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    /* border: 1px solid var(--border); */
}

.woocommerce-custom-checkout-container #payment ul.wc_payment_methods li input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: var(--primary);
}

.woocommerce-custom-checkout-container #payment ul.wc_payment_methods li label {
    font-weight: 500;
    color: var(--font-color);
    cursor: pointer;
}

.woocommerce-custom-checkout-container #payment ul.wc_payment_methods li .payment_box {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent);
    line-height: 1.4;
}

.woocommerce-custom-checkout-container #payment #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-custom-checkout-container #payment #place_order:hover {
    background-color: var(--secondary);
}

/* Style validation/error notices */
.woocommerce-error {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding-left: 1.5rem;
}

.woocommerce-message {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding-left: 1.5rem;
}

/* Custom WooCommerce Checkout Styles */

.woocommerce-custom-checkout-container .woocommerce-checkout-review-order-table table th {
    font-weight: 500;
    color: var(--font-color);
}

.woocommerce-custom-checkout-container .woocommerce-checkout-review-order-table table tr.shipping td {
    padding: 0.5rem 0;
}

.woocommerce-custom-checkout-container .woocommerce-shipping-methods {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.woocommerce-custom-checkout-container .woocommerce-shipping-methods li {
    display: block;
}

.woocommerce-custom-checkout-container .woocommerce-shipping-methods li label {
    font-weight: 400;
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.woocommerce-custom-checkout-container .woocommerce-shipping-methods li input[type="radio"] {
    accent-color: var(--secondary-theme);
    width: 1rem;
    height: 1rem;
}

/* .woocommerce-custom-checkout-container #payment ul.wc_payment_methods li:has(input[type="radio"]:checked) {
    border-color: var(--secondary-theme);
    background-color: rgba(246, 139, 31, 0.03);
} */

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row input.input-text,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row select,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row textarea {
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--font-color);
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row select:focus,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(5, 164, 222, 0.15);
    outline: 0;
}

.checkout-coupon-wrapper .coupon-code {
    border: 1px solid var(--border);
    border-radius: 0.375rem;
}

/* WooCommerce Info/Notice Styles */
.woocommerce-info {
    background-color: #cff4fc;
    border-color: #b6effb;
    color: #055160;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    list-style: none;
    border-left: 4px solid var(--primary);
}

/* WooCommerce Processing / Loading Overlay */
.cart-section.processing,
form.woocommerce-checkout.processing {
    opacity: 0.6;
    pointer-events: none;
}

/* Applied coupon badge on checkout */
.applied-coupon-item {
    transition: all 0.2s ease;
}

.applied-coupon-item:hover {
    border-color: #198754 !important;
}

/* Thank You Page */
.woocommerce-order-received .woocommerce-order {
    padding: 3rem 0;
}

.woocommerce-thankyou-order-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.woocommerce-thankyou-order-details li {
    background: var(--base-bg);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 180px;
    flex: 1;
}

.woocommerce-thankyou-order-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.woocommerce-order-details table,
.woocommerce-customer-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.woocommerce-order-details table th,
.woocommerce-order-details table td,
.woocommerce-customer-details table th,
.woocommerce-customer-details table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-secondary);
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--font-color);
    margin: 2rem 0 1rem;
    letter-spacing: -0.5px;
}

/* =============================================================================
   WooCommerce Checkout Layout Overrides & Card Styling
   ============================================================================= */

/* Grid and column layouts */
.woocommerce-custom-checkout-container form.woocommerce-checkout {
    display: block !important;
}

.woocommerce-custom-checkout-container #customer_details {
    display: block !important;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 15px !important;
}

.woocommerce-billing-fields__field-wrapper p.form-row,
.woocommerce-shipping-fields__field-wrapper p.form-row {
    grid-column: span 12 !important;
    margin-bottom: 15px !important;
}

.woocommerce-billing-fields__field-wrapper p#billing_first_name_field,
.woocommerce-shipping-fields__field-wrapper p#shipping_first_name_field {
    grid-column: span 6 !important;
}

.woocommerce-billing-fields__field-wrapper p#billing_last_name_field,
.woocommerce-shipping-fields__field-wrapper p#shipping_last_name_field {
    grid-column: span 6 !important;
}

/* Hide redundant default headings */
.woocommerce-billing-fields>h3,
.woocommerce-shipping-fields>h3 {
    display: none !important;
}

/* Field label styles */
.woocommerce-checkout label {
    font-weight: 500 !important;
    color: #495057 !important;
    margin-bottom: 6px !important;
    font-size: 0.95rem !important;
}

/* Align WooCommerce checkout inputs with theme form-control styles */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: var(--base-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: var(--primary) !important;
    background-color: #fff !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Style WooCommerce Select2 country field to match other inputs */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background-color: var(--base-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    height: 54px !important;
    padding: 12px 16px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6C757D !important;
    line-height: 28px !important;
    font-family: var(--font-secondary) !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px !important;
    right: 15px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6C757D !important;
}

/* Style single-option country text block (strong tag) to match other inputs */
.woocommerce-checkout #billing_country_field .woocommerce-input-wrapper strong,
.woocommerce-checkout #shipping_country_field .woocommerce-input-wrapper strong {
    display: block !important;
    background-color: var(--base-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    height: 54px !important;
    padding: 12px 16px !important;
    line-height: 28px !important;
    font-weight: normal !important;
    color: #6C757D !important;
    font-family: var(--font-secondary) !important;
}



/* Control Label custom hover and selected border highlights */
.control-label {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    background-color: var(--white) !important;
    padding: 15px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

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

.control-label:has(input:checked) {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 1px var(--primary) !important;
}

/* Custom Checkbox and Radio styling inside payment gateways */
.control-label .payment_box {
    margin-top: 8px !important;
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
    font-size: 0.85rem !important;
    color: #6c757d !important;
    line-height: 1.5 !important;
}

/* Terms and conditions checkbox wrapper */
.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px !important;
    font-size: 0.9rem !important;
}

.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper label {
    cursor: pointer;
    color: #495057 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize !important;
}

/* Custom WooCommerce Checkbox styling (Bootstrap style) */
.woocommerce-checkout input[type="checkbox"] {
    width: 1.1rem !important;
    height: 1.1rem !important;
    vertical-align: middle !important;
    background-color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    border: 1px solid #212529 !important;
    border-radius: 4px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    margin-right: 8px !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out !important;
}

.woocommerce-checkout input[type="checkbox"]:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

/* Hide default WooCommerce checkout coupon notification banner */
.woocommerce-form-coupon-toggle,
.woocommerce-checkout>.woocommerce-info {
    display: none !important;
}

/* Shipping method option highlight when checked */
.shipping-method-option {
    border: 1px solid var(--border) !important;
    background-color: var(--white) !important;
    transition: all 0.2s ease !important;
}

.shipping-method-option:hover {
    border-color: var(--secondary) !important;
}

.shipping-method-option:has(input:checked) {
    background-color: color-mix(in srgb, var(--secondary) 10%, transparent) !important;
    border-color: var(--secondary) !important;
}

.shipping-method-option input[type="radio"]:checked {
    background-color: transparent !important;
    border: 2px solid var(--secondary) !important;
    background-image: none !important;
}

.shipping-method-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Hide default WooCommerce (optional) text to prevent duplicate "(Optional) (optional)" */
.woocommerce-checkout label span.optional {
    display: none !important;
}

/* Fix first name and last name input fields to take full width when wrapped in custom col grids */
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row-first,
.woocommerce-custom-checkout-container form.woocommerce-checkout .form-row-last {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
}

.priority-box {
   position: relative;
   cursor: pointer;
}
.priority-box .wpcf7-form-control-wrap {
   position: absolute;
   top: 20px;
   right: 20px;
}
.priority-box .wpcf7-list-item-label {
   display: none;
}
.priority-box .wpcf7-list-item {
   margin: 0;
   display: inline-block;
}
.priority-box input[type="radio"] {
   width: 14px;
   height: 14px;
   cursor: pointer;
   background-color: #D9D9D9;
   border-radius: 50%;
   border: 1px solid #dee2e6;
   appearance: none;
   -webkit-appearance: none;
   margin: 0;
}
.priority-box input[type="radio"]:checked {
   background-color: var(--secondary) !important;
   border-color: var(--secondary) !important;
   background-image: none !important;
}
.priority-box:has(input[type="radio"]:checked) {
   background-color: color-mix(in srgb, var(--secondary) 10%, transparent) !important;
   border-color: var(--secondary) !important;
}
.upload-area .wpcf7-form-control-wrap {
   position: absolute !important;
   width: 0 !important;
   height: 0 !important;
   opacity: 0 !important;
   pointer-events: none !important;
   display: block !important;
}

.contact-box p,
.contact-box a {
    word-break: break-word;
}