/* =========================================
   CSS Tokens
   ========================================= */
:root {
    --bt-primary:  #0b2241;
    --bt-secondary:#F4EBE2;
    --bt-gold:     #c9a84c;
    --bt-white:    #ffffff;
    --bt-text:     #0b2241;
    --bt-muted:    #6a7a8a;
    --bt-border:   rgba(11,34,65,.12);
    --bt-radius:   12px;
    --bt-shadow:   0 4px 16px rgba(11,34,65,.08);
}

/* =========================================
   1. General & Layout
   ========================================= */
.bt-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Section Header (shared) */
.bt-section-header { text-align: center; margin-bottom: 36px; }
.bt-section-header h2 { font-size: 24px; font-weight: 700; color: var(--bt-primary); margin-bottom: 8px; }
.bt-section-header p { font-size: 14px; color: var(--bt-muted); }

/* Universal Carousel Structure */
.bt-carousel-sync { display: flex; flex-direction: column; width: 100%; }
.bt-track-outer { overflow: hidden; width: 100%; }
.bt-track { 
    display: flex; 
    gap: 20px; 
    transition: transform .4s ease; 
    will-change: transform; 
    /* پدینگ بالا اضافه شد تا فضای بالا رفتن کارت در حالت هاور فراهم شود */
    padding: 10px 5px 15px 5px; 
}
/* Shared Dots */
.bt-dots { display: flex; justify-content: center; gap: 7px; margin-top: 20px; }
.bt-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(11,34,65,.18);
    border: none; padding: 0; cursor: pointer;
    transition: background .2s, transform .2s;
}
.bt-dot.active { background: var(--bt-primary); transform: scale(1.45); }

/* Shared CTA Buttons */
.bt-cta-link {
    display: inline-block; padding: 10px 28px;
    border: 1.5px solid var(--bt-primary); color: var(--bt-primary);
    border-radius: 25px; font-size: 14px; text-decoration: none;
    transition: background .2s, color .2s;
}
.bt-cta-link:hover { background: var(--bt-primary); color: var(--bt-white); }

/* =========================================
   2. Hero Section
   ========================================= */
.bt-hero-section {
    position: relative; width: 100%; min-height: 500px;
    background: url('https://beautytag.ir/wp-content/uploads/2026/04/best-microblading-center-shiraz-banner.jpg') no-repeat center center/cover;
    background-color: #1a2b4c; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.bt-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); z-index: 1; }
.bt-hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; padding: 0 20px; }
body .bt-hero-section h1.bt-hero-title {
    color: #fff !important; font-size: 25px !important; font-weight: 700 !important;
    background: transparent !important; text-shadow: 0 2px 6px rgba(0,0,0,.7) !important;
    margin-bottom: 15px !important; line-height: 1.4 !important;
}
.bt-hero-subtitle { font-size: 17px; color: #f1f1f1; opacity: .9; margin-bottom: 36px; }
.bt-hero-search-box {
    background: #fff; padding: 5px 15px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15); margin: 0 auto; max-width: 100%;
}
.asp_main_container { background: transparent !important; border: none !important; box-shadow: none !important; margin: 0 !important; }

@media (max-width: 768px) { body .bt-hero-section h1.bt-hero-title { font-size: 20px !important; } }

/* =========================================
   3. Listicles Section
   ========================================= */
.bt-listicles-section { padding: 60px 0; background: #fcfcfc; }
.bt-listicle-card {
    flex: 0 0 calc(33.333% - 14px); min-width: 0; text-decoration: none; color: inherit;
    border-radius: var(--bt-radius); overflow: hidden; box-shadow: var(--bt-shadow);
    transition: transform .2s; background: var(--bt-white); display: flex; flex-direction: column;
}
.bt-listicle-card:hover { transform: translateY(-4px); }
.bt-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.bt-card-image img { width: 100%; height: 100%; object-fit: cover; }
.bt-badge {
    position: absolute; top: 10px; right: 10px; background: var(--bt-gold); color: #fff;
    font-size: 11px; padding: 3px 8px; border-radius: 20px;
}
.bt-card-content { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.bt-card-content h3 { font-size: 15px; margin: 0 0 8px; line-height: 1.5; color: var(--bt-text); }
.bt-read-more { font-size: 13px; color: var(--bt-gold); }
.bt-listicles-cta { text-align: center; margin-top: 24px; }

@media (max-width: 768px) { .bt-listicle-card { flex: 0 0 calc(80% - 10px); } }
@media (max-width: 480px) { .bt-listicle-card { flex: 0 0 90%; } }

/* =========================================
   4. Featured Profiles Section
   ========================================= */
.bt-featured-profiles { padding: 60px 0; background: var(--bt-secondary); }
.bt-profile-card {
    flex: 0 0 260px; flex-shrink: 0; background: var(--bt-white);
    border-radius: 15px; overflow: hidden; box-shadow: var(--bt-shadow); transition: transform .3s;
}
.bt-profile-card:hover { transform: translateY(-5px); }
.bt-profile-card a { text-decoration: none; color: inherit; }
.profile-thumb { position: relative; height: 180px; }
.profile-thumb img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { padding: 15px; }
.profile-title {
    font-size: 16px; margin: 0 0 10px; color: var(--bt-text); font-weight: bold;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.profile-meta { font-size: 13px; color: var(--bt-muted); display: flex; align-items: center; gap: 5px; }
.profile-meta .dashicons { font-size: 14px; width: 14px; height: 14px; }

@media (max-width: 768px) { .bt-profile-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 480px) { .bt-profile-card { flex: 0 0 calc(80% - 10px); } }

/* =========================================
   5. Locations Section
   ========================================= */
.bt-simple-locations { padding: 60px 0; background: #fcfbf9; }
.bt-simple-locations .bt-track { gap: 16px; }
.bt-location-card {
    flex: 0 0 220px; flex-shrink: 0; border-radius: 14px; overflow: hidden;
    position: relative; text-decoration: none; box-shadow: var(--bt-shadow); transition: transform .3s;
}
.bt-location-card:hover { transform: translateY(-4px); }
.bt-location-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.bt-location-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff;
}
.bt-location-overlay h3 { margin: 0; font-size: .95rem; font-weight: 600; }

/* =========================================
   6. B2B CTA
   ========================================= */
.bt-b2b-cta-section { padding: 60px 0; }
.bt-b2b-wrapper {
    background: linear-gradient(135deg, #d4af37 0%, #a88222 100%);
    border-radius: 20px; padding: 50px 30px; text-align: center; color: #fff;
    box-shadow: 0 15px 30px rgba(212,175,55,.2); position: relative; overflow: hidden;
}
.bt-b2b-wrapper::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 300px; height: 300px; background: rgba(255,255,255,.1); border-radius: 50%;
}
.bt-b2b-wrapper h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 15px; position: relative; z-index: 2; }
.bt-b2b-wrapper p { font-size: 18px; margin-bottom: 30px; opacity: .9; position: relative; z-index: 2; }
.bt-btn-cta {
    display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #a88222;
    padding: 14px 35px; border-radius: 50px; font-weight: 700; font-size: 16px; text-decoration: none;
    transition: all .3s; position: relative; z-index: 2; box-shadow: 0 8px 15px rgba(0,0,0,.1);
}
.bt-btn-cta:hover,
.bt-btn-cta:focus,
.bt-btn-cta:active {
    background: var(--bt-primary) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .bt-b2b-wrapper { padding: 40px 20px; }
    .bt-b2b-wrapper h2 { font-size: 24px; }
    .bt-b2b-wrapper p { font-size: 15px; }
}
