/*
Theme Name: Village Agri Mart
Theme URI: #
Author: Antigravity
Author URI: #
Description: A WooCommerce theme for an agriculture pesticides company.
Version: 1.0.0
Text Domain: village-agri-mart
*/

:root {
    --primary-color: #edb90f;
    --secondary-color: #3f541e;
    --bg-light: #f4f7f6;
    --border-gray: #eaeaea;
}

body {
    background-color: var(--bg-light);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-bottom: 0px; /* Default */
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 75px; /* Space for floating nav */
    }
    body.single-product {
        padding-bottom: 155px; /* Space for floating nav + action buttons */
    }
}



/* Header Elements */
.search-input-wrapper {
	border: 1px solid #ced4da;
	border-radius: 4px;
	overflow: hidden;
}
.search-input-wrapper input {
	border: none;
	box-shadow: none;
}
.search-input-wrapper input:focus {
	box-shadow: none;
	outline: none;
}
.search-btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.search-btn-primary:hover {
	background-color: #d8a609;
	color: #fff;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 80px 0;
    min-height: 500px;
    background-size: cover !important;
    background-position: center !important;
}
.hero-banner .hero-content {
	position: relative;
	z-index: 2;
}
.carousel-item {
    transition: opacity 1.2s ease-in-out !important;
}
.carousel-item .hero-banner {
    transition: transform 6s linear;
    transform: scale(1.05); /* Slight zoom for initial state */
}
.carousel-item.active .hero-banner {
    transform: scale(1); /* Smooth un-zoom effect to feel premium */
}
.hero-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-banner .btn-primary {
    background-color: white;
    color: var(--secondary-color);
    border: none;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 1.1rem;
    margin-top: 20px;
}
.hero-banner .text-yellow {
    color: var(--primary-color) !important;
}

/* Category Icons */
.section-title {
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
	position: relative;
}
.section-title span.view-all {
	position: absolute;
	right: 0;
	bottom: 0px;
	font-size: 14px;
	font-weight: normal;
	color: #444;
	text-decoration: underline;
}

.category-item {
    text-align: center;
    margin-bottom: 25px;
}
.category-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 0 auto 12px;
    overflow: hidden;
	transition: transform 0.3s;
}
.category-item:hover .category-icon {
	transform: translateY(-5px);
}
.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Product Cards */
.todays-offer-bg {
	background-color: #eaf1ed;
	padding: 40px 0;
}
.todays-offer-title {
	font-size: 24px;
	font-weight: 600;
}
.todays-offer-title span {
	font-size: 14px;
	font-weight: normal;
	display: block;
	margin-top: 5px;
}

.custom-product-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    padding: 15px;
    position: relative;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.custom-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #b0b0b0;
    background: transparent;
    border: none;
    z-index: 2;
    font-size: 18px;
}
.product-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 10px;
}
.product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.rating-badge {
    position: absolute;
    bottom: -10px;
    left: 0px;
    background: #28a745;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}
.product-title {
    font-size: 14px;
    color: #222;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
	line-height: 1.4;
	font-weight: 500;
}
.product-brand {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}
.price-block {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 5px;
}
.price-block .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}
.price-block .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}
.save-text {
    font-size: 12px;
    color: #1e7a33;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}
.save-text i {
	background: #28a745;
	color: white;
	border-radius: 50%;
	font-size: 9px;
	padding: 2px;
}
.variant-select-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px 10px;
}
.variant-select-wrapper span {
	font-size: 13px;
	color: #666;
}
.variant-select {
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: transparent;
    cursor: pointer;
}
.variant-select:focus {
	outline: none;
}

/* WooCommerce Premium Native Upgrades */
.woocommerce span.onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    z-index: 10 !important;
    line-height: 1 !important;
    min-height: auto !important;
    min-width: auto !important;
}

.woocommerce-product-gallery {
    opacity: 1 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce-product-gallery__image {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
}
.woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
    text-align: center;
}
.woocommerce-product-gallery__image img:not(.zoomImg) {
    margin: 0 auto;
    max-height: 400px;
    object-fit: contain;
    width: 100% !important;
    display: block;
}

/* Move the WooCommerce Magnifying Glass Trigger */
.woocommerce .woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: auto !important;
    bottom: 25px !important;
    left: 25px !important;
    right: auto !important;
    z-index: 99 !important;
    text-align: center;
}
.woocommerce-product-gallery .flex-control-nav {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0;
}
.woocommerce-product-gallery .flex-control-nav li {
    list-style: none;
    width: 60px;
    height: 60px;
}
.woocommerce-product-gallery .flex-control-nav li img {
    width: 100% !important;
    height: 100% !important;
    max-height: 60px;
    object-fit: cover !important;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
	padding: 2px;
}
.woocommerce-product-gallery .flex-control-nav li img.flex-active {
    border-color: var(--primary-color);
}

/* Single Product overrides for WC */
.single-product-container {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	margin-top: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.sp-title {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}
.sp-brand {
	color: #777;
	font-size: 14px;
	text-decoration: underline;
	margin-bottom: 10px;
	display: block;
}
.sp-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.sp-rating-stars {
	color: var(--primary-color);
	font-size: 14px;
}
.sp-rating-score {
	background: #222;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 4px;
}
.sp-rating-reviews {
	color: #28a745;
	font-size: 14px;
	font-weight: 500;
}
.sp-price-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.sp-price-label {
	font-size: 16px;
	color: #333;
}
.sp-current-price {
	font-size: 28px;
	font-weight: 700;
	color: #222;
}
.sp-old-price {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
}
.sp-discount-pill {
	background: var(--primary-color);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 4px;
}
.sp-save-text {
    color: #28a745;
    font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.sp-save-text i {
	background: #28a745;
	color: white;
	border-radius: 50%;
	font-size: 10px;
	padding: 2px;
}
.sp-inclusive-taxes {
    font-size: 13px;
    color: #666;
	margin-top: 5px;
}
.sp-special-offer {
    background: #e1f0fa;
    padding: 10px 20px;
    border-radius: 8px;
    color: #0b5ed7;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
	gap: 10px;
    margin-top: 15px;
    margin-bottom: 25px;
	cursor: pointer;
}
.sp-variant-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}
.sp-variants-grid {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}
.sp-variant-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    position: relative;
	min-width: 120px;
}
.sp-variant-box.active {
    border-color: #28a745;
    background-color: #f2fcf5;
	border-width: 2px;
	padding: 14px;
}
.sp-variant-discount {
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
	white-space: nowrap;
}
.sp-variant-size {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	margin-bottom: 5px;
	display: block;
}
.sp-variant-price {
	font-size: 16px;
	font-weight: 700;
	color: #222;
}
.sp-variant-old {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
	margin-left: 5px;
}
.sp-variant-best-seller {
    background: #eedfff;
    color: #6a1b9a;
    font-size: 11px;
	font-weight: 600;
    padding: 4px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.action-buttons {
	display: flex;
	gap: 15px;
}
.btn-add-cart {
    background-color: var(--primary-color);
    color: white;
	font-weight: 600;
	padding: 12px 0;
	border: none;
	font-size: 16px;
	flex: 1;
}
.btn-add-cart:hover {
    background-color: #d8a609;
    color: white;
}
.btn-buy-now {
    background-color: var(--secondary-color);
    color: white;
	font-weight: 600;
	padding: 12px 0;
	border: none;
	font-size: 16px;
	flex: 1;
}
.btn-buy-now:hover {
    background-color: #2e3e15;
    color: white;
}

/* Footer Elements */
.site-footer {
    background-color: #2a3631; /* Dark charcoal green matching screenshot */
    color: #a9b3b0; 
    font-size: 14.5px;
}
.site-footer .footer-text {
    color: #9ab3a6; /* Light grayish green */
    line-height: 1.8;
    text-align: justify;
}
.site-footer .footer-widget-title {
    color: #4aa55b; /* Vibrant green for headings */
    font-size: 20px;
    font-weight: 500;
}
.site-footer .footer-links a {
    color: #9ab3a6;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .footer-links a:hover {
    color: #4aa55b;
}
.site-footer .missed-call-btn {
    background-color: #fb8c00; /* Orange background */
    color: #ffffff;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.footer-bottom {
    background-color: #212b26; /* Slightly darker background for the bottom bar */
    border-top: 1px solid #32413a;
}

/* Floating Bottom Navigation */
.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.floating-nav .nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.floating-nav .nav-item {
    text-decoration: none;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.floating-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.floating-nav .nav-item.active {
    color: var(--secondary-color);
}

.floating-nav .nav-item.active i {
    transform: translateY(-2px);
    color: var(--secondary-color);
}

.floating-nav .nav-item span {
    letter-spacing: 0.2px;
}

/* Cart Badge in Nav */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f44336;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    height: 16px;
    min-width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* Minimal Desktop Footer */
.site-footer-minimal {
    background-color: #fff;
    border-top: 1px solid var(--border-gray);
}


/* -------------------------------------
   Mobile Optimization Utilities
-------------------------------------- */
.mobile-hide-scrollbar {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
	scroll-snap-type: x mandatory;
}
.mobile-hide-scrollbar::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.mobile-hide-scrollbar > .col {
    scroll-snap-align: start;
}

@media (max-width: 991.98px) {
	/* Header Adjustments */
	.main-header .container {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.search-bar {
		width: 100% !important;
		margin-top: 10px;
	}
	
    /* Banner Adjustments */
    .hero-banner {
        padding: 40px 0;
        text-align: center;
    }
    .hero-banner h1 {
        font-size: 2.1rem;
    }
    .hero-banner .btn-primary {
        margin-top: 15px;
        padding: 10px 30px;
		font-size: 1rem;
    }
	
	/* Horizontal Swipe Grids Adjustments */
	.cat-col { /* Mobile category icon grid */
		flex: 0 0 auto;
		width: 28%;
		min-width: 100px;
	}
	.prod-col { /* Mobile product card grid */
		flex: 0 0 auto;
		width: 75%;
		max-width: 260px;
	}
	
	/* Categories Resizing */
    .category-icon {
        width: 75px;
        height: 75px;
    }
    .category-title {
        font-size: 12.5px;
        line-height: 1.25;
    }
    .category-item {
        margin-bottom: 5px;
    }

	/* Products Resizing */
    .todays-offer-bg {
        padding: 25px 0;
    }
    .todays-offer-title {
        font-size: 20px;
    }
    .product-image-wrapper {
        height: 160px;
    }
    .product-title {
        font-size: 13px;
    }
    .product-brand {
		font-size: 11px;
	}
    .price-block .current-price {
        font-size: 17px;
    }
    .mobile-sticky-footer {
        position: fixed;
        bottom: 61px; /* Sit right above the floating nav (approx 60px height) */
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1040;
        margin-top: 0 !important;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
        border-top: 1px solid #eee;
    }

}

@media (min-width: 992px) {
    .cat-col {
		flex: 0 0 auto;
        width: 16.666667%; /* 6 items per row */
    }
    .prod-col {
		flex: 0 0 auto;
        width: 20%; /* 5 items per row */
    }
}

/* -------------------------------------
   Splash Screen Animation
-------------------------------------- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.splash-content {
    text-align: center;
    animation: zoomInSplash 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.splash-logo i {
    animation: pulseLeaf 2s infinite ease-in-out;
    filter: drop-shadow(0 4px 6px rgba(40, 167, 69, 0.3));
}
.splash-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}
.splash-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes zoomInSplash {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes pulseLeaf {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* App Onboarding Carousel Specifics */
#onboardingCarousel .carousel-indicators {
    margin-bottom: 0;
}
#onboardingCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: #3f541e;
    opacity: 0.25;
    border: none;
    transition: all 0.3s ease;
}
#onboardingCarousel .carousel-indicators .active {
    opacity: 1;
    width: 24px;
    border-radius: 10px;
    background-color: #4CAF50;
}
/* -------------------------------------
   My Account Page Styling
-------------------------------------- */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.woocommerce-MyAccount-navigation {
    flex: 0 0 100%;
}

.woocommerce-MyAccount-content {
    flex: 0 0 100%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .woocommerce-MyAccount-navigation {
        flex: 0 0 280px;
    }
    .woocommerce-MyAccount-content {
        flex: 1;
    }
}

.account-menu-list a {
    color: #555;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.account-menu-list a:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding-left: 20px !important;
}

.account-menu-list li.is-active a {
    background: var(--secondary-color);
    color: #fff !important;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(63, 84, 30, 0.2);
}

.account-menu-list li.is-active a i {
    color: #fff !important;
}

.account-menu-list a i {
    color: #888;
    transition: color 0.3s ease;
}

.account-menu-list a:hover i {
    color: var(--secondary-color);
}

/* Dashboard Cards */
.dashboard-card {
    border-color: #eee !important;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

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

/* My Account Forms Styling */
.woocommerce-EditAccountForm fieldset, 
.woocommerce-address-fields fieldset {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce-EditAccountForm legend,
.woocommerce-address-fields legend {
    font-weight: bold;
    padding: 0 10px;
    font-size: 18px;
}

.woocommerce-form-row input.input-text {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.woocommerce-Button, .woocommerce-button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none !important;
    transition: all 0.3s ease;
}

.woocommerce-Button:hover, .woocommerce-button:hover {
    background-color: #2e3e15 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Order Table Styling */
.woocommerce-orders-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    border: none !important;
}

.woocommerce-orders-table thead th {
    background: #f8f9fa;
    border: none !important;
    padding: 15px !important;
    font-weight: 700;
}

.woocommerce-orders-table tbody tr {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.woocommerce-orders-table tbody td {
    border: 1px solid #f1f1f1 !important;
    border-left: none !important;
    border-right: none !important;
    padding: 15px !important;
}

.woocommerce-orders-table tbody td:first-child {
    border-left: 1px solid #f1f1f1 !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.woocommerce-orders-table tbody td:last-child {
    border-right: 1px solid #f1f1f1 !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
/* -------------------------------------
   General Page Styling
-------------------------------------- */
.page-header {
    margin-top: -20px; /* Counteract general margin */
}

.page-content-card {
    line-height: 1.8;
}

.page-content-card h2 {
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content-card p {
    color: #555;
    margin-bottom: 20px;
}

.page-content-card ul, .page-content-card ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.page-content-card li {
    margin-bottom: 10px;
    color: #555;
}

/* About Page Specifics */
.about-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
}

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

.icon-circle:hover {
    transform: rotate(10deg) scale(1.1);
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

.lh-lg {
    line-height: 2 !important;
}

/* Policy Page Accents */
.page-content-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 30px;
}

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

