/*
Theme Name: New
Author: New
Description: Design Change
Version: 1.0
*/


.ad-single {
    max-width: 900px;
    margin: 30px auto;
}

.ad-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.ad-meta {
    color: #777;
    margin-bottom: 15px;
}

.ad-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ad-image img {
    max-width: 100%;
    border-radius: 4px;
}

.ad-content {
    margin-top: 20px;
}

.ad-author-box {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #ddd;
}

.btn_row {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.a {
  color: #d9047a;
  text-decoration: none;
}


.full-category-content {
    width: 100%;
    background: #f9f9f9;
    padding: 50px 20px;
}

.category-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

/* Optional heading styling */
.category-content-inner h1,
.category-content-inner h2,
.category-content-inner h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #222;
}

.category-content-inner p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.tag-heading{
  text-align:center;
  font-size:16px;
  margin:10px 0;
  font-weight:600;
}

.tag-wrap{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
}

.tag-wrap a{
  font-size:12px;
  padding:4px 10px;
  border-radius:14px;
  background:#f6f6f6;
  color:#444;
  text-decoration:none;
  border:1px solid #ddd;
  white-space:nowrap;
}

.tag-wrap a:hover{
  background:#ff0077;
  color:#fff;
  border-color:#ff0077;
}

#citylist {
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}
.city-item {
  cursor: pointer;
}


/* ===== Coins Page Wrapper ===== */
.coin-plans-wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 50px;
    text-align: center;
}

.page-title{
    font-size: 32px;
    margin-bottom: 5px;
}

.page-subtitle{
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* ===== Plans Grid ===== */
.coin-plans{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===== Plan Card ===== */
.coin-plan{
    background: #f1f1f1;
    border: 2px solid #000000;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.coin-plan:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== Popular Plan ===== */
.coin-plan.popular{
    border: 2px solid #9a0668;
    position: relative;
}

.coin-plan.popular::before{
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #9a0668;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* ===== Text ===== */
.coin-plan h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.coins-count{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price{
    font-size: 24px;
    color: #be206b;
    margin-bottom: 20px;
}

/* ===== Button ===== */
.buy-btn{
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: #be206b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
}

.coin-plan.popular .buy-btn{
    background: #9a0668;
}

/* ========================= */
/* ===== RESPONSIVE ======== */
/* ========================= */

/* Tablet */
@media (max-width: 991px){
    .coin-plans{
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title{
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 600px){
    .coin-plans{
        grid-template-columns: 1fr;
    }

    .coin-plan{
        padding: 25px 18px;
    }

    .page-title{
        font-size: 24px;
    }

    .price{
        font-size: 22px;
    }
}


.coin-details-wrapper{
    max-width:900px;
    margin:50px auto;
    padding:20px;
    text-align:center;
}

.scanner-section{
    margin:20px 0;
}

.scanner-section input{
    padding:10px;
    width:60%;
    max-width:300px;
    border:1px solid #ccc;
    border-radius:6px;
    margin-right:10px;
}

.scanner-section button{
    padding:10px 20px;
    background:#be206b;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.user-blocks{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:30px;
}

.user-card{
    border:1px solid #ddd;
    padding:20px;
    border-radius:10px;
    width:250px;
    background:#f8f8f8;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    text-align:left;
}

.user-card h3, .user-card h4{
    margin-bottom:8px;
    color:#333;
}

.user-card p{
    font-size:16px;
    font-weight:600;
    color:#be206b;
    margin-bottom:10px;
}

.user-card label{
    font-size:14px;
    margin-top:8px;
    display:block;
}

.user-card input{
    width:100%;
    padding:6px;
    margin-bottom:10px;
    border:1px solid #ccc;
    border-radius:5px;
}

.user-card button{
    width:100%;
    padding:8px;
    background:#25d366;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

/* Mobile responsive */
@media(max-width:600px){
    .user-blocks{
        flex-direction:column;
        gap:15px;
        align-items:center;
    }
}




.payment-confirmation-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.payment-confirmation-form h2 {
    text-align: center;
    margin-bottom: 15px;
}

.payment-confirmation-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.payment-confirmation-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.payment-confirmation-form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.payment-confirmation-form button:hover {
    background: #005177;
}

.info-block {
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.go-back-btn {
    margin-top: 15px;
    background: #777;
}


