/* =========================================
   1. ORIGINAL STYLES (Updated to #e7ab3c)
   ========================================= */
.product-card-home {
    display: flex;
    justify-content: space-around;
}

.product-card-home > .card > .pricing-card-home-btn {
    margin-top: 15px !important;
}

footer.footer {
    padding: 50px 0 30px;
}

footer.copyright {
    padding: 50px 0px 10px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-10 {
    padding-bottom: 15px;
}

footer.footer .copyright {
    margin: 30px 0 0px!important;
    font-size: .85rem;
    text-align: center;
}

/* Updated Standard WHMCS Buttons to Brand Color */
.btn-outline-primary {
    color: #000;
    border-color: #e7ab3c!important;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #e7ab3c!important;
    border-color: #e7ab3c!important;
}

.btn-primary {
    color: #fff;
    background-color: #e7ab3c!important;
    border-color: #e7ab3c!important;
}

.btn-primary:hover {
    color: #fff;
    background-color: #f0b44b!important; /* Slightly lighter for hover */
    border-color: #f0b44b!important;
}

/* =========================================
   2. NEW HOMEPAGE REDESIGN (Hostiko Style)
   ========================================= */

/* =========================================
   AAK.COM.TR STYLE PRICING TABLES
   Brand Color: #e7ab3c
   ========================================= */

/* The Card Container */
.aak-pricing-card {
    background: #fff;
    border: 1px solid #e1e1e1; /* Subtle border like main site */
    border-top: 5px solid #e7ab3c; /* Thick Brand Color Top */
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.aak-pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #e7ab3c; /* Full border turns orange on hover */
}

/* 1. Header Section (Name) */
.aak-pricing-header {
    background-color: #f8f9fa; /* Light grey header background */
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

.aak-pricing-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
}

/* 2. Price Section (Using Tagline) */
.aak-pricing-price {
    padding: 25px 0 10px;
    color: #e7ab3c; /* Brand Orange */
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; /* or your theme font */
}

.aak-pricing-price small {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

/* 3. Features List */
.aak-features {
    padding: 15px 20px;
    text-align: left; /* Aligns text for readability */
    font-size: 0.95rem;
    color: #666;
}

/* Auto-style the feature lines */
.aak-features p, 
.aak-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

/* Add Checkmark Icon */
.aak-features p::before, 
.aak-features li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: #e7ab3c; /* Orange Check */
    margin-right: 10px;
    font-size: 0.9rem;
}

/* 4. Button */
.btn-aak-order {
    background-color: #333; /* Dark button like often seen on hosting sites */
    color: #fff;
    border-radius: 3px;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid #333;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-aak-order:hover {
    background-color: #e7ab3c; /* Orange on hover */
    border-color: #e7ab3c;
    color: #fff;
}

/* =========================================
   3. MOBILE / RESPONSIVE ADJUSTMENTS
   ========================================= */
@media(max-width:767px) {
    .margin_minus { margin-top: 0px !important; }
    .pt-20 { padding-top: 20px !important; }
    
    .product-card-home {
        display: inline-block;
        justify-content: space-around;
    }
    
    .text-cen { text-align: center; }
    
    footer.footer .copyright { margin: 0px 0 0px !important; }
    footer.footer { padding: 50px 0 10px !important; }
}
/* ---------------------------------------------------------
   Pricing Feature List Styling
--------------------------------------------------------- */
.pricing-features {
    margin: 20px 0 30px 0;
    font-size: 0.95rem;
    color: #6c757d;
}

/* Target standard HTML lists if used in description */
.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li, 
.pricing-features p {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1); /* Subtle separator */
    display: flex;
    align-items: center;
    justify-content: center; /* Keep text centered */
}

/* Remove border from last item */
.pricing-features li:last-child,
.pricing-features p:last-child {
    border-bottom: none;
}

/* Add Brand Color Checkmark before every feature */
.pricing-features li::before,
.pricing-features p::before {
    content: "\f00c"; /* FontAwesome Check Code */
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900;
    color: #e7ab3c; /* Brand Color */
    margin-right: 8px;
    font-size: 1rem;
}