/* Ad Details Page Specific Styles */

/* Stripe 1: Home icon ONLY on Ad Details (scoped by has-home-icon) */
.header-strip.has-home-icon .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 6px; /* tiny enterprise shift right */
}

.header-strip.has-home-icon .strip-left {
    display: flex;
    align-items: center;
    transform: translateX(12px); /* tiny enterprise nudge */
}

/* keep link style same; just ensure no weird underline */
.header-strip.has-home-icon .strip-left .strip-link {
    text-decoration: none;
}

/* Legacy .home-btn (no longer used) — keep harmless, but remove fixed positioning behavior */
.home-btn {
    display: none;
}

/* Ad container breathing space (Ad Details only)
   Adds 24px top gap so white ad container sits below header with breathing space.
   Scoped here in adverts-show.css so Main Menu is unaffected.
*/
.ad-container {
    /* If .ad-container exists elsewhere, this will override for Ad Details page only.
       24px ≈ 2 lines of vertical breathing space — adjust to 32px if you prefer more. */
    margin-top: 24px;
}

/* Ad Details: make grey details box sharper (border + cleaner shadow) */
.ad-container .details-box {
    border: 1px solid #b5b5b5;          /* dark grey thin border */
    box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* softer shadow so border is visible */
}

/* Title & tagline */
.site-title {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
    color: #ff6f3c;
    margin: 40px auto 5px;
}

.site-tagline {
    display: block;
    text-align: center;
    font-size: 20px;
    color: #000;
    margin: 0 0 40px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 40px 0 20px;
}

/* Sell Button - EXACT COPY from homepage */
.sell-btn { 
    display: inline-block;
    width: 180px;
    background: #ff6f3c; 
    color: #fff; 
    padding: 10px 20px; 
    border-radius: 30px; 
    font-weight: bold; 
    text-decoration: none; 
    font-size: 16px; 
    box-shadow: 0 3px 8px rgba(0,0,0,0.2); 
    transition: all 0.3s ease; 
    text-align: center;
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.sell-btn:hover { 
    background: #e85a20; 
}

