﻿
.cover-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: visible;
/*    background: #f5f5f5;
*/}

.cover-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    /*border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;*/
}

.cover-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--theme), #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
/*    border-bottom-left-radius: 24px;
*/    /*border-bottom-right-radius: 24px;*/
    color: rgba(255,255,255,0.35);
    font-size: 60px;
}

.logo-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 20;
}

.merchant-logo,
.logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.logo-placeholder {
    background: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

/* Main Content */

.info-section {
    padding: 70px 24px 30px;
    text-align: center;
}

.welcome-text {
    margin: 0;
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.merchant-name {
    font-size: 30px;
    font-weight: 800;
    color: #1f1f1f;
    margin: 6px 0 12px;
}

.merchant-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 24px;
}


.btn-main-cta {
    width: fit-content;
    min-width: 220px;
    margin: 0 auto;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--theme), #222);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

    .btn-main-cta:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0,0,0,0.14);
        filter: brightness(1.03);
    }

    .btn-main-cta i {
        font-size: 14px;
    }

/* Footer */

.footer-bottom {
    margin-top: 80px;
    padding: 18px 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background: #fafafa;
    border-radius: 12px 12px 0 0;
}

.footer-brand {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
}

    .footer-brand:hover {
        color: #000;
        text-decoration: underline;
    }

/*=========== item tag css ==============*/
.tag-pill {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius:5px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #fff;
    background: #F06C21;
}

    /* SHIMMER LINE */

    .tag-pill::after {
        content: "";
        position: absolute;
        top: -20%;
        left: -60%;
        width: 8%;
        height: 140%;
        background: rgba(255,255,255,0.45);
        transform: rotate(25deg);
        animation: tagShine 5s infinite;
    }

@keyframes tagShine {

    0% {
        left: -60%;
    }

    100% {
        left: 140%;
    }
}
/*=================== feedback form ===========================*/
.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

    .feedback-header h4 {
        margin: 0;
        font-weight: 700;
    }

.back-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111 !important;
    text-decoration: none !important;
}

.feedback-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.feedback-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 10px;
}

.feedback-card h3 {
    text-align: center;
    font-weight: 700;
}

.feedback-card p {
    text-align: center;
    color: #777;
    margin-bottom: 24px;
}

.emoji-rating {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
}

.emoji-option {
    flex: 1;
    text-align: center;
}

    .emoji-option input {
        display: none;
    }

    .emoji-option label {
        display: block;
        font-size: 2.3rem;
        cursor: pointer;
        filter: grayscale(100%);
        transition: .25s;
    }

    .emoji-option span {
        display: block;
        margin-top: 6px;
        font-size: .72rem;
        font-weight: 600;
        color: #777;
    }
    .emoji-option input:hover + label {
        filter: none;
    }

    .emoji-option input:checked + label {
        filter: none;
        transform: scale(1.2);
    }

        .emoji-option input:checked + label + span {
            color: var(--purple);
        }


.feedback-input {
    width: 100%;
    border: none;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
}

    .feedback-input:focus {
        outline: none;
        background: #ececec;
    }

.submit-btn {
    width: 100%;
    border: none;
    background: var(--purple);
    color: #fff;
    padding: 15px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
}
/*-------------------- extra info above the footer ----------------*/
.extra-info-card {
    margin: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

    .extra-info-card h6 {
        font-weight: 700;
        margin-bottom: 12px;
    }

.extra-info-list {
    margin: 0;
    padding-left: 18px;
}

    .extra-info-list li {
        margin-bottom: 8px;
        color: #555;
        line-height: 1.5;
    }

    /*--- cart ----------*/
.cart-btn {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
    .cart-btn:hover {
        color: #111;
        text-decoration: none;
    }
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff3b30;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-header {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-back {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    text-decoration: none;
}

.header-title {
    font-size: 1.1rem;
    font-weight: 700;
}
.checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: auto;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
}
/*--- map btn ---*/
