#id-content-wrapper-left {
    display: none;
}
.content-center {
    padding: 0;
}
.content-wrapper-center {
    grid-column: 1 / 13;
    grid-row: 3;
    width: 100%;
}

/* Store Detail Container */
.store-detail-container {
    max-width: 100%;
    margin: 32px 0;
    padding: 0;
}

/* Store Box Styling - Horizontal Layout */
.store-box {
    background: #fffbf2;
    border-radius: 3px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.8);
    display: flex;
    flex-direction: row;
}

.store-image {
    width: 400px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
    position: relative;
    flex-shrink: 0;
}

.store-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.store-content {
    padding: 32px;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.store-info-left {
    display: flex;
    flex-direction: column;
}

.store-info-right {
    display: flex;
    flex-direction: column;
}

.store-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
    margin-left: 8px;
}

.store-info {
    font-size: 0.875rem;
    color: #374151;
    margin: 6px 0;
    line-height: 1.4;
}

.store-info a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.store-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
}

.rating-value {
    font-weight: 600;
    color: #111827;
}

.rating-count {
    color: #6b7280;
    font-size: 0.8125rem;
}

.stars {
    display: inline-block;
    color: #e7711b;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.4;
}

.stars .rate-bg {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAQAAAAz1Zf0AAAAWklEQVR4AY3O0QbDQBCG0UNYQi0hhBJqr8Iy7/94vewYlp65/Ay//4WlLnQLt3BbeIRH5jBFPVMHmlHS0CRnSqdiT3GH1edb8RGmoy4GwrBhM4Qmebn8XDrwBW7xChrojlOZAAAAAElFTkSuQmCC);
    background-size: 14px 13px;
    height: 13px;
    top: 1px;
    width: 70px;
    background-repeat: repeat-x;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.stars .rate {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAcklEQVQoz2NgoDZ4Xij9nxxNASCNIJpUjQugGheQqvEBVOMDfIoSgPg9VCEh/B7F+UCOAhDvJ6AJJK+Ay/Z8HJryCfnNAIdGA0IaC3BonEBI4wakQIgH4vsEQxeqERYIAlC+AFKg4QwYByCuxyFXj56KAEHuodjGnEtTAAAAAElFTkSuQmCC);
    background-size: 14px 13px;
    height: 13px;
    top: 1px;
    width: 70px;
    background-repeat: repeat-x;
    display: block;
}

.add-review-btn {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: #f9f9f9;
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.5;
}

.add-review-btn:hover {
    background: #487bea;
    color: #f9f9f9;
}

.opening-hours {
}

.hours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.hours-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.hours-day {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 2px 0;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 2px;
    transition: background-color 0.2s ease;
    min-height: 20px;
}

.hours-day:hover {
    background-color: #f9fafb;
}

.day-name {
    color: #374151;
    font-weight: 500;
    flex: 0 0 auto;
}

.hours-time {
    font-weight: 500;
    color: #111827;
    text-align: right;
    flex: 0 0 auto;
}

/* Current day highlighting */
.hours-day.current-day {
    background-color: #dbeafe;
    border-left: 3px solid #3b82f6;
    font-weight: 600;
}

.store-status {
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    padding: 4px 12px;
    margin: 0;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.store-status.open {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.store-status.closed {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Location + Transport Grid */
.store-location-transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    grid-column: 1 / -1;
}

/* Location Section */
.store-location {
}

.location-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.location-text {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
    margin: 8px 0;
}

.btn-location {
    display: inline-block;
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-location:hover {
    background: #2563eb;
}

/* Transport Section */
.store-transport {
}

.transport-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-list li {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.6;
    padding: 4px 0;
}

.transport-list li strong {
    color: #374151;
}

/* Map Container */
#map-container {
    width: 100%;
    margin: 32px 0;
    padding: 0;
    text-align: center;
}

#map {
    width: 100%;
    height: 450px;
}

/* Services Section */
.services {
    max-width: 100%;
    margin: 32px 0;
    padding: 0;
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.services li {
    margin: 0;
}

.services .box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 16px;
    height: 100%;
    transition: all 0.2s ease;
}

.services .box:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.services .box strong {
    color: #1e40af;
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 8px;
}

/* Staff Schedule Section */
#staff-schedule {
    max-width: 100%;
    margin: 32px 0;
    padding: 24px;
    background: #fffbf2;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

#staff-schedule h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #3b82f6;
}

#staff-schedule-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.staff-day {
    background: white;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.staff-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.staff-day-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.staff-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    transition: border-color 0.2s ease;
}

.staff-day:hover .staff-photo {
    border-color: #3b82f6;
}

.staff-info {
    font-size: 0.8125rem;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.staff-info strong {
    display: block;
    color: #111827;
    font-size: 0.875rem;
    margin-top: 4px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 968px) {
    .store-detail-container {
        padding: 0;
        margin: 24px 0;
    }

    .store-box {
        flex-direction: column;
    }

    .store-image {
        width: 100%;
        min-height: 250px;
    }

    .store-content {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .store-title {
        font-size: 1.25rem;
    }

    .store-location-transport-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #map {
        height: 350px;
    }

    .services {
        padding: 0 24px;
    }

    .services ul {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #staff-schedule {
        padding: 16px;
        margin: 24px 0;
    }

    #staff-schedule h3 {
        font-size: 1.125rem;
    }

    #staff-schedule-box {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .staff-photo {
        width: 70px;
        height: 70px;
    }
}

/* Special days styling (Varianta B) - Subtle highlighting without icons */
.hours-day.special-day {
    background: linear-gradient(90deg, #fff3cd 0%, rgba(255, 243, 205, 0.3) 100%);
    border-left: 3px solid #f59e0b;
}

.hours-day.special-day .day-name {
    font-weight: 600;
    color: #92400e;
}

.hours-day.special-day .hours-time {
    color: #92400e;
    font-weight: 600;
}

/* Increase day-name width to accommodate dates */
.hours-day .day-name {
    min-width: 120px;
}
