/* assets/css/public-merchantdetail.css */

/* ============================================
   1. PAGE SHELL
   ============================================ */
.merchdetail-section {
    background: var(--sg-surface-alt, #fafaf9);
    min-height: 100vh;
}

.merchdetail-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   2. HERO BANNER
   ============================================ */
.merchdetail-hero {
    position: relative;
    min-height: 360px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem 0 0;
}

.merchdetail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.merchdetail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.merchdetail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.95) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(247, 148, 30, 0.15) 0%, transparent 50%);
}

/* Dot pattern */
.merchdetail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.merchdetail-hero-content {
    position: relative;
    z-index: 4;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    width: 100%;
}

/* Logo */
.merchdetail-hero-logo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background: white;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: -70px;
    position: relative;
    z-index: 5;
}

.merchdetail-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

/* Info */
.merchdetail-hero-info {
    flex: 1;
    padding-bottom: 0.5rem;
}

.merchdetail-hero-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.merchdetail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.merchdetail-badge--category {
    background: rgba(247, 148, 30, 0.2);
    color: #f7941e;
    border: 1px solid rgba(247, 148, 30, 0.4);
}

.merchdetail-badge--verified {
    background: rgba(46, 125, 70, 0.2);
    color: #7dce94;
    border: 1px solid rgba(46, 125, 70, 0.4);
}

.merchdetail-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin: 0 0 0.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.merchdetail-hero-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
    max-width: 600px;
}

/* Stats */
.merchdetail-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.merchdetail-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.merchdetail-stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #f7941e;
    line-height: 1;
}

.merchdetail-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.merchdetail-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   3. ACTIONS BAR
   ============================================ */
.merchdetail-actions-bar {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.merchdetail-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.merchdetail-actions::-webkit-scrollbar { display: none; }

.merchdetail-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid #e5e5e5;
    background: white;
    color: #33322e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.merchdetail-action-btn:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #f7941e;
    transform: translateY(-1px);
}

.merchdetail-action-btn--primary {
    background: #f7941e;
    color: #1a1a1a;
    border-color: #f7941e;
}

.merchdetail-action-btn--primary:hover {
    background: #c9720f;
    border-color: #c9720f;
    color: white;
}

/* ============================================
   4. TABS (Sticky)
   ============================================ */
.merchdetail-tabs-wrap {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 58px;
    z-index: 99;
}

.merchdetail-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.merchdetail-tabs::-webkit-scrollbar { display: none; }

.merchdetail-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b6b66;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.merchdetail-tab:hover { color: #1a1a1a; }

.merchdetail-tab.active {
    color: #1a1a1a;
    border-bottom-color: #f7941e;
}

.merchdetail-tab-badge {
    background: #f7941e;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* ============================================
   5. CONTENT AREA
   ============================================ */
.merchdetail-content {
    padding: 2rem 1.5rem;
}

.merchdetail-panel {
    display: none;
    animation: mdFadeIn 0.4s ease;
}

.merchdetail-panel.active { display: block; }

@keyframes mdFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.merchdetail-panel-header {
    margin-bottom: 1.5rem;
}

.merchdetail-panel-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin: 0 0 0.35rem;
}

.merchdetail-panel-subtitle {
    color: #6b6b66;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   6. ABOUT LAYOUT
   ============================================ */
.merchdetail-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.merchdetail-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.5rem;
}

.merchdetail-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.merchdetail-card-title i { color: #f7941e; }

.merchdetail-about-text p {
    color: #33322e;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.merchdetail-about-text p:last-child { margin-bottom: 0; }

/* Highlights */
.merchdetail-highlights {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #e5e5e5;
}

.merchdetail-highlights-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
}

.merchdetail-highlights-title i { color: #f7941e; }

.merchdetail-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.merchdetail-highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem;
    background: #fff3e1;
    border-radius: 10px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.875rem;
}

.merchdetail-highlight-icon {
    color: #c9720f;
    flex-shrink: 0;
}

/* Sidebar */
.merchdetail-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.merchdetail-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.merchdetail-contact-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #f1f0ee;
}

.merchdetail-contact-row:last-child { border-bottom: none; }

.merchdetail-contact-row > i {
    color: #f7941e;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.merchdetail-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b6b66;
    margin-bottom: 0.15rem;
}

.merchdetail-contact-value {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

a.merchdetail-contact-value:hover { color: #f7941e; }

/* Business Hours */
.merchdetail-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.merchdetail-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.merchdetail-hours-row:hover { background: #fafaf9; }

.merchdetail-hours-row.today {
    background: #fff3e1;
    font-weight: 600;
}

.merchdetail-hours-row span:first-child {
    color: #33322e;
    font-weight: 500;
}

.merchdetail-hours-row span:last-child {
    color: #6b6b66;
    font-size: 0.8rem;
}

/* Social */
.merchdetail-social-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.merchdetail-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff3e1;
    color: #c9720f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.merchdetail-social-icon:hover {
    background: #f7941e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(247, 148, 30, 0.3);
}

/* ============================================
   7. FILTERS
   ============================================ */
.merchdetail-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.merchdetail-filter-search {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 340px;
}

.merchdetail-filter-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b3b0a8;
    pointer-events: none;
    transition: color 0.2s ease;
}

.merchdetail-filter-search input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.4rem;
    border: 1.5px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
    background: white;
}

.merchdetail-filter-search:focus-within i { color: #f7941e; }

.merchdetail-filter-search input:focus {
    border-color: #f7941e;
    box-shadow: 0 0 0 3px #ffe2b8;
}

.merchdetail-filter-select {
    padding: 0.65rem 1rem;
    border: 1.5px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.875rem;
    outline: none;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.merchdetail-filter-select:focus {
    border-color: #f7941e;
    box-shadow: 0 0 0 3px #ffe2b8;
}

/* ============================================
   8. LOADING & EMPTY STATES
   ============================================ */
.merchdetail-loading,
.merchdetail-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: white;
    border: 1px dashed #e5e5e5;
    border-radius: 16px;
    color: #6b6b66;
}

.merchdetail-empty i {
    font-size: 3.5rem;
    color: #d8d6d1;
    display: block;
    margin-bottom: 1rem;
}

.merchdetail-empty h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.merchdetail-empty p { margin: 0; font-size: 0.9rem; }

/* ============================================
   9. COUPONS GRID
   ============================================ */
.merchdetail-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.md-coupon-card {
    background: white;
    border: 1.5px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: mdFadeIn 0.4s ease;
}

.md-coupon-card:hover {
    border-color: #f7941e;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(247, 148, 30, 0.15);
}

.md-coupon-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #fff3e1;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.md-coupon-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.md-coupon-saving {
    background: #1a1a1a;
    color: #f7941e;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    white-space: nowrap;
}

.md-coupon-expiry {
    font-size: 0.72rem;
    color: #6b6b66;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.md-coupon-expiry.warning { color: #c9720f; }
.md-coupon-expiry.danger { color: #c0392b; }

.md-coupon-body { position: relative; z-index: 1; margin-bottom: 1rem; }

.md-coupon-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.md-coupon-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: #6b6b66;
    flex-wrap: wrap;
}

.md-coupon-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.md-coupon-meta i { color: #f7941e; }

.md-coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px dashed #e5e5e5;
    position: relative;
    z-index: 1;
}

.md-coupon-qty {
    font-size: 0.78rem;
    color: #6b6b66;
}

.md-coupon-qty strong { color: #1a1a1a; }

.md-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    text-decoration: none;
}

.md-btn--primary {
    background: #1a1a1a;
    color: #f7941e;
    border-color: #1a1a1a;
}

.md-btn--primary:hover {
    background: #f7941e;
    color: #1a1a1a;
    border-color: #f7941e;
    transform: translateY(-1px);
}

.md-btn--login {
    background: #f7941e;
    color: #1a1a1a;
    border-color: #f7941e;
}

.md-btn--login:hover {
    background: #c9720f;
    border-color: #c9720f;
    color: white;
}

/* ============================================
   10. BRANCHES GRID
   ============================================ */
.merchdetail-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
}

.md-branch-card {
    background: white;
    border: 1.5px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: mdFadeIn 0.4s ease;
}

.md-branch-card:hover {
    border-color: #f7941e;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(247, 148, 30, 0.12);
}

.md-branch-map {
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.md-branch-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(247, 148, 30, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.1) 0%, transparent 40%);
}

.md-branch-map-pin {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    background: #f7941e;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(247, 148, 30, 0.4);
}

.md-branch-map-pin i {
    transform: rotate(45deg);
    color: #1a1a1a;
    font-size: 1.25rem;
}

.md-branch-body { padding: 1.25rem; }

.md-branch-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin: 0 0 0.35rem;
}

.md-branch-city {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #f7941e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.md-branch-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #33322e;
    margin-bottom: 1rem;
}

.md-branch-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.md-branch-detail i {
    color: #f7941e;
    width: 16px;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.md-branch-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e5e5;
}

.md-branch-actions .md-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
}

/* ============================================
   11. REVIEWS
   ============================================ */
.merchdetail-reviews-summary {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.merchdetail-reviews-score {
    text-align: center;
}

.merchdetail-reviews-score-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.merchdetail-reviews-stars {
    color: #f7941e;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.merchdetail-reviews-count {
    color: #6b6b66;
    font-size: 0.85rem;
}

.merchdetail-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.merchdetail-review-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.5rem;
}

.merchdetail-review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.merchdetail-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7941e, #ff8c00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.merchdetail-review-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.merchdetail-review-stars {
    color: #f7941e;
    font-size: 0.85rem;
}

.merchdetail-review-date {
    margin-left: auto;
    color: #b3b0a8;
    font-size: 0.8rem;
}

.merchdetail-review-text {
    color: #33322e;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   12. RELATED MERCHANTS
   ============================================ */
.merchdetail-related {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.merchdetail-related::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: #f7941e;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.merchdetail-related-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin: 0 0 0.5rem;
    position: relative;
}

.merchdetail-related-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
}

.merchdetail-related-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.merchdetail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    text-decoration: none;
}

.merchdetail-btn--primary {
    background: #f7941e;
    color: #1a1a1a;
    border-color: #f7941e;
    box-shadow: 0 6px 20px rgba(247, 148, 30, 0.3);
}

.merchdetail-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(247, 148, 30, 0.4);
}

.merchdetail-btn--ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.merchdetail-btn--ghost:hover {
    border-color: white;
    background: white;
    color: #1a1a1a;
}

/* ============================================
   13. RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .merchdetail-about-grid {
        grid-template-columns: 1fr;
    }

    .merchdetail-hero-logo {
        width: 110px;
        height: 110px;
    }

    .merchdetail-hero-stats { gap: 1.25rem; }
    .merchdetail-stat-value { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .merchdetail-hero { min-height: 280px; }

    .merchdetail-hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1rem;
    }

    .merchdetail-hero-logo {
        width: 90px;
        height: 90px;
        margin-bottom: -45px;
    }

    .merchdetail-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .merchdetail-stat-divider { display: none; }

    .merchdetail-tabs-wrap { top: 50px; }

    .merchdetail-tab {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }

    .merchdetail-tab span:not(.merchdetail-tab-badge) { display: none; }

    .merchdetail-filters { flex-direction: column; }
    .merchdetail-filter-search { max-width: 100%; }

    .merchdetail-coupons-grid,
    .merchdetail-branches-grid {
        grid-template-columns: 1fr;
    }

    .merchdetail-highlights-grid {
        grid-template-columns: 1fr;
    }

    .merchdetail-content { padding: 1.5rem 1rem; }

    .merchdetail-panel-title { font-size: 1.35rem; }

    .merchdetail-related { padding: 3rem 1rem; }
    .merchdetail-related-actions { flex-direction: column; }
    .merchdetail-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .merchdetail-hero-logo { width: 80px; height: 80px; }
    .merchdetail-hero-title { font-size: 1.5rem; }
    .merchdetail-actions { gap: 0.4rem; }
    .merchdetail-action-btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
}