

.shop-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: -80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}


.breadcrumb-item.active {
    color: rgb(50, 50, 50);
}

.shop-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.shop-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.shop-category {
    color: #FF6B35;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: #2c3e50;
}

.rating-count {
    color: #6c757d;
    font-size: 14px;
}

.shop-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.follow-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.follow-btn.following {
    background: #28a745;
}

.action-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

.shop-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 14px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-icon {
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

.section-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-card {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px solid #FFB347;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 100px;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.promotion-badge {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-breadcrumb .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #FF8E53;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Sidebar card styles to match original */
.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.card-brand-primary {
    border: 1px solid #e9ecef;
}

.card-title {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-top: 2px;
}

.text-primary {
    color: #2c3e50 !important;
}

.text-link {
    color: #FF6B35;
    text-decoration: none;
}

.text-link:hover {
    color: #FF8E53;
    text-decoration: underline;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefits-list .benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    margin-right: 15px;
}

.benefit-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-description {
    color: #6c757d;
    font-size: 14px;
}

.certificates-list .certificate-item {
    margin-bottom: 15px;
}

.certificate-item:last-child {
    margin-bottom: 0;
}

.certificate-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.certificate-description {
    color: #6c757d;
    font-size: 14px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.map-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.map-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.map-btn.outline {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.map-btn.outline:hover {
    background: #FF6B35;
    color: white;
}

@media (max-width: 768px) {
    .shop-hero {
        height: 40vh;
        padding-bottom: 40px;
    }
    
    .shop-info-card {
        margin-top: -60px;
        padding: 20px;
    }
    
    .shop-title {
        font-size: 1.8rem;
    }
    
    .shop-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .shop-actions {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}