/* Additional styles for shops page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 100px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.shop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.shop-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    min-width: 48px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: auto;
    max-width: 80%;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: 48px;
    right: 16px;
    background: linear-gradient(135deg, var(--error-primary), var(--error-light));
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    min-width: 48px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: auto;
    max-width: 80%;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.shop-card:hover .shop-badge {
    transform: translateY(5px);
}

.shop-content {
    padding: 1.5rem;
}

.shop-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.shop-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.shop-stars {
    color: #ffc107;
}

.shop-rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.shop-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.shop-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-tag {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.shop-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-view:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-follow {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    background: var(--primary-color);
    color: white;
}

.filter-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-select, .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.5rem 0.75rem;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 2rem; */
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-actions {
        flex-direction: column;
    }
}

/* Shop Detail Page Styles */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 110px !important;
    min-height: 50vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    padding: 4rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-location {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.hero-section .shop-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: static;
}

.info-card, .sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--brand-orange, #FF6B35);
    padding-bottom: 0.5rem;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.promotion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promotion-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promotion-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promotion-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promotion-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-item i {
    width: 20px;
    flex-shrink: 0;
}

.benefits-list .benefit-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-list .benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.points-info {
    padding: 2rem;
}

.points-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.points-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.review-item {
    padding: 1rem 0;
}

.review-item:last-child {
    border-bottom: none !important;
}

.review-header {
    margin-bottom: 0.5rem;
}

.review-user {
    font-weight: 600;
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-comment {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Button Styles */
.btn-outline-brand-orange {
    color: var(--brand-orange, #FF6B35);
    border-color: var(--brand-orange, #FF6B35);
    background: transparent;
}

.btn-outline-brand-orange:hover {
    background-color: var(--brand-orange, #FF6B35);
    border-color: var(--brand-orange, #FF6B35);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card, .sidebar-card {
        padding: 1.5rem;
    }
}

/* =============================
   BREADCRUMB STYLES (moved from color-schema.css)
   ============================= */
.breadcrumb-section {
    border-bottom: 1px solid var(--border-primary, #e9ecef);
    background: var(--bg-primary, #fff);
    position: relative;
    z-index: 10;
}

/* Enhanced breadcrumb for hero section */
.hero-section .breadcrumb-brand {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    margin: 0;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-brand {
    background: transparent;
    padding: 8px 0;
    margin: 0;
    border-radius: 0;
}

.breadcrumb-brand .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero section breadcrumb items */
.hero-section .breadcrumb-brand .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-muted, #495057);
    font-weight: 600;
    margin: 0 10px;
    font-size: 0.9rem;
}

/* Hero section breadcrumb separators */
.hero-section .breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 0 12px;
    font-size: 0.9rem;
}

.breadcrumb-brand .breadcrumb-item a {
    color: var(--link-primary, #FF6B35);
    text-decoration: none;
    transition: var(--transition-fast, all 0.15s ease);
    padding: 6px 10px;
    border-radius: var(--border-radius-sm, 8px);
    display: inline-block;
}

/* Hero section breadcrumb links */
.hero-section .breadcrumb-brand .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-brand .breadcrumb-item a:hover {
    color: var(--link-hover, #E06600);
    background-color: rgba(255, 107, 53, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Hero section breadcrumb links hover */
.hero-section .breadcrumb-brand .breadcrumb-item a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumb-brand .breadcrumb-item.active span {
    color: var(--brand-orange, #FF6B35);
    font-weight: 700;
    padding: 6px 10px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius-sm, 8px);
    display: inline-block;
}

/* Hero section active breadcrumb */
.hero-section .breadcrumb-brand .breadcrumb-item.active span {
    color: #ffffff;
    font-weight: 700;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Icons in breadcrumb */
.hero-section .breadcrumb-brand .breadcrumb-item i {
    margin-right: 6px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .breadcrumb-brand .breadcrumb-item {
        font-size: 0.8rem;
    }
    .breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 4px;
    }
    .breadcrumb-brand .breadcrumb-item a,
    .breadcrumb-brand .breadcrumb-item.active span {
        padding: 2px 6px;
    }
    
    /* Hero section mobile */
    .hero-section .breadcrumb-brand {
        padding: 8px 12px;
        border-radius: 20px;
    }
    .hero-section .breadcrumb-brand .breadcrumb-item a,
    .hero-section .breadcrumb-brand .breadcrumb-item.active span {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
} 

/* Remove scale/transform effect from shop image on hover */
.shop-image,
.shop-image:hover,
.shop-card:hover .shop-image {
    transform: none !important;
} 