.elementor-19 .elementor-element.elementor-element-659e308{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-eeba6cd */.pricing {
    background: linear-gradient(135deg, #f5f0e6, #e8dcc8);
    padding: 100px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.title {
    font-size: 40px;
    color: #b8965a;
}

.subtitle {
    color: #6e5c3b;
    margin-bottom: 60px;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Cards */
.card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184,150,90,0.3);
    transition: 0.4s;
    overflow: hidden;
}

/* Animated top border */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, gold, transparent);
    transition: 0.5s;
}

.card:hover::before {
    left: 100%;
}

/* Hover */
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(184,150,90,0.3);
}

/* Popular */
.popular {
    border: 2px solid gold;
    transform: scale(1.05);
}

/* Premium */
.premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(230,201,143,0.6));
}

/* Custom */
.custom {
    border: 2px dashed #b8965a;
}

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: gold;
    color: black;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
}

/* Price */
.card h1 {
    font-size: 34px;
    color: #000;
    margin: 15px 0;
}

.card span {
    font-size: 14px;
}

/* List */
.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.card ul li {
    margin: 8px 0;
    color: #000;
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(45deg, #b8965a, #d4b06a);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.highlight {
    background: linear-gradient(45deg, gold, #d4af37);
    color: #000;
}

.btn:hover {
    box-shadow: 0 5px 20px rgba(184,150,90,0.5);
}/* End custom CSS */