/*!
Theme Name: Ovix
Theme URI: https://wp.xpressbuddy.com/ovix/
Author: XpressBuddy
Author URI: https://xpressbuddy.com/
Description: Ovix is a WordPress theme for Digital Agency & Creative Portfolio
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ovix
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600;700&display=swap');
button,
input,
textarea,
select {
    font-family: 'Host Grotesk', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Host Grotesk', sans-serif !important;
}

.cp-pricing-card {
    background: #fff;
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}
.thm-btn .btn-shape svg {
    clip-path: inset(4px round 999px);
}

.cp-sub {
    color: #666;
    margin-bottom: 25px;
}

.cp-price-box {
    margin-bottom: 50px;
}

.cp-total {
    display: block;
    color: #999;
    text-decoration: line-through;
}

.cp-price {
    display: block;
    font-size: 42px;
    font-weight: 800;
}

.cp-save {
    color: #16a34a;
    font-weight: 600;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    text-align: left;
}

.cp-grid ul {
    list-style: none;
    padding: 0;
}

.cp-grid li {
    margin-bottom: 18px;
    font-size: 14px;
}

.cp-grid strong {
    display: block;
}

.ga-card {
    text-align: center;
    position: relative;
    color: #fff;
}

.ga-tag {
/*     transform: translateX(-50%); */
    background: linear-gradient(90deg,#22c55e,#16a34a);
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1px;
	display: block;
    width: 15%;
    margin: 20px auto;
}
.ga-bonus strong{
	color: #000 !important;
}

.ga-title {
    font-size: 48px;
    margin-bottom: 12px;
}

.ga-sub {
    color: #a1a1aa;
    margin-bottom: 5px;
}

.ga-price-box {
    margin-bottom: 20px;
}

.ga-old {
    text-decoration: line-through;
    color: #71717a;
    display: block;
}

.ga-new {
    font-size: 28px;
    font-weight: 900;
    display: block;
    margin: 10px 0px;
}

.ga-save {
    color: #22c55e;
    font-weight: 600;
}

/* FEATURE GRID */
.ga-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-bottom: 70px;
}

/* FEATURE CARD BASE */
.ga-feature-card {
    border-radius: 26px;
    padding: 35px;
    color: #000;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08),
                0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.ga-feature-card:hover {
	cursor:pointer;
    transform: translateY(-12px) scale(1.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15),
                0 25px 60px rgba(0,0,0,0.18);
}

/* Soft shine animation */
.ga-feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ga-feature-card:hover::before {
    opacity: 1;
}


.ga-feature-card h4 {
    font-size: 20px;
	color:#000;
    margin-bottom: 20px;
}

/* LIST */
.ga-feature-card ul {
    list-style: none;
    padding: 0;
}

.ga-feature-card li {
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
    font-size: 14px;
}

.ga-feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* COLOR VARIANTS */
.blue {
    background:#EFEFEF;
}

.purple {
    background:#EFEFEF;
}

.green {
    background:#EFEFEF;
}

/* BONUS */
.ga-bonus {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
	color:#000 !important;
    margin-bottom: 45px;
    font-size: 16px;
	    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ga-bonus span {
    color: #22c55e;
    font-weight: 700;
}

/* CTA */
.ga-btn {
    background: #0000f6;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
    .ga-features {
        grid-template-columns: 1fr;
    }
    .ga-card {
        padding: 10px;
    }
	.ga-btn {
    background: #0000f6;
    color: #000;
      color: #fff;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}
	.ga-title {
    font-size: 24px;
    margin-bottom: 12px;
}
	.ga-bonus {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
	color:#000 !important;
    margin-bottom: 45px;
    font-size: 14px;
	    display: block;
    align-items: center;
    justify-content: space-between;
}
	.ga-tag {
/*     transform: translateX(-50%); */
    background: linear-gradient(90deg,#22c55e,#16a34a);
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1px;
	display: block;
    width: 60%;
    margin: 20px auto;
}
}
