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

/* Store Boxes Styling */
.store-boxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
    padding: 0;
}

.store-box {
    background: #fffbf2; /* Light yellow background for stores */
    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);
}

.store-box.eshop {
    background: #f1f7ff; /* Light blue background for e-shop */
}

.store-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
    position: relative;
}

.eshop-image {
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.cart-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.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: 24px;
}

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

.store-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
}

.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;
    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;
}

.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 detail button styling */
.store-content .btn.c212 {
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin: 1rem auto 0rem auto;
    background: #095de6;
    display: block;
    width: 160px;
    color: white;
    text-align: center;
    font-weight: 500;
}

.store-content .btn.c212:hover {
    background: #e2ab2d;
}

.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;
}

/* Map full width styling */
#contact-overview {
    width: 100%;
    display: block;
}

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

#shop-list {
    display: none;
}

/* Custom map markers styling */
.custom-marker {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-45deg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
}

.custom-marker.main-store {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.custom-marker-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-weight: bold;
    font-size: 10px;
    color: white;
    z-index: 1;
}

/* Info items styling */
.info-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin: 24px 0;
    border-left: 4px solid #3b82f6;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.c369, .c438 {
    margin: 0;
}

.c438 {
    padding: 0 .96774rem;
}

/* Responsive design for info items */
@media (max-width: 768px) {
    .info-item {
        padding: 16px;
        margin: 16px 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-boxes-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 24px 0;
    }
    
    .store-content {
        padding: 20px;
    }
    
    .store-image {
        height: 180px;
    }
}

@media (min-width: 1400px) {
    .store-boxes-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 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;
}

.hours-day .day-name {
    min-width: 95px;
    display: inline-block;
}
