/* =========================================================
   SINGLE BRAND PAGE START
========================================================= */



.store-page {
    padding: 42px 0 80px;
}

/* =========================================================
   MAIN LAYOUT START
========================================================= */

.store-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 18px;
}

.store-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 95px;
}

.store-main {
    display: grid;
    gap: 18px;
    max-width: 900px;
}


/* =========================================================
   SIDEBAR START
========================================================= */

.store-logo-card {
    padding: 24px;
    text-align: center;
}

.store-logo-card img {
    max-height: 78px;
    object-fit: contain;
    margin-bottom: 18px;
}

.store-logo-card h2 {
    font-size: 22px;
    margin: 0 0 8px;
}

.store-rating {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 14px;
}

.store-visit-btn {
    color: white;
    display: block;
    width: 100%;
    margin-top: 14px;
    text-align: center;
    border: 0;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.sidebar-widget {
    padding: 20px;
}

.sidebar-widget h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.sidebar-widget p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.store-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.store-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.store-info-list li:last-child {
    border-bottom: 0;
}

/* =========================================================
   STORE HEADER START
========================================================= */

.store-header-box {
    padding: 30px 34px;
}

.store-header-box h1 {
    font-size: 38px;
    line-height: 1.18;
    margin: 0 0 10px;
    letter-spacing: -0.6px;
}

.store-header-box p {
    color: var(--text-light);
    margin: 0;
}



/* =========================================================
   CONTENT AREA START
========================================================= */
.content-section{
 display: grid;
 gap: 18px;
}

.store-content-box {
    padding: 34px;
    color: #374151;
    font-size: 17px;
    line-height: 1.85;
}

.store-content-box h2 {
    font-size: 26px;
    margin: 34px 0 12px;
    line-height: 1.25;
}

.store-content-box h2:first-child {
    margin-top: 0;
}

.store-content-box h3 {
    font-size: 21px;
    margin: 24px 0 8px;
}

.store-content-box p {
    margin-bottom: 14px;
}

.store-content-box ul,
.store-content-box ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.store-content-box a {
    color: var(--primary);
    font-weight: 700;
}

/* =========================================================
   SIMILAR / POPULAR BRANDS START
========================================================= */

.similar-brands-section,
.popular-brands-section {
    padding: 24px;
}

.similar-brands-section h2,
.popular-brands-section h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.similar-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.small-brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: .2s ease;
}

.small-brand-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.small-brand-card img {
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.small-brand-card span {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.empty-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
}





/*read more funtional css start */
.store-content-wrapper {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
  
}

.store-content-wrapper.collapsed {
    max-height: 400px;
}

.store-content-wrapper.collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 70%);
    pointer-events: none;
    z-index: 2;
}

.store-content-wrapper.expanded {
    max-height: none;
}

.store-read-more-btn {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    border: 0;
    background: #6b35ff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(107, 53, 255, 0.25);
}

.store-content-wrapper.expanded .store-read-more-btn {
    position: static;
    transform: none;
    display: block;
    margin: -35px auto 0;
}
/*read more funtional css end */



/*active coupon count css start */

.active-coupon-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border: 2px dotted #7c3aed;
    border-radius: 5px;
    color: #7c3aed;
    font-weight: 800;
    margin-left: 8px;
}

/*active coupon count css end */

/* =========================================================
   SINGLE BRAND PAGE END
========================================================= */