/* Ceremony Stores Manager - Frontend Styles */

/* Stores Grid */
.ceremony-stores-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.ceremony-cols-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.ceremony-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ceremony-cols-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.ceremony-cols-5 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Store Card */
.ceremony-store-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceremony-store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.ceremony-store-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ceremony-store-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000000;
}

.ceremony-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ceremony-store-card:hover .ceremony-store-image img {
    transform: scale(1.05);
}

.ceremony-store-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.ceremony-store-placeholder .dashicons {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.ceremony-store-content {
    padding: 20px;
    text-align: center;
}

.ceremony-store-title {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceremony-store-button {
    display: inline-block;
    padding: 10px 25px;
    background: #000000;
    color: #fff;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 400;
    transition: background 0.3s ease;
}

.ceremony-store-card:hover .ceremony-store-button {
    background: #000000;
}

/* Single Store Page */
.ceremony-store-single {
    padding: 40px 0;
}

.ceremony-store-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.ceremony-store-header {
    margin-bottom: 40px;
    text-align: center;
}

.ceremony-store-breadcrumb {
    font-size: 0.9em;
    color: #000000;
    margin-bottom: 12px;
}

.ceremony-store-breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.ceremony-store-breadcrumb a:hover {
    text-decoration: none;
}

.ceremony-store-breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.ceremony-store-name {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
}

.ceremony-store-city {
    font-size: 1.2em;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.ceremony-store-city .dashicons {
    color: #000000;
}

/* Grid Layout */
.ceremony-store-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Main Content */
.ceremony-store-main h2 {
    font-size: 1.75em;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #333;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    text-decoration: none;
}

.ceremony-store-main h2:first-child {
    margin-top: 0;
}

.ceremony-store-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceremony-store-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ceremony-store-description {
    line-height: 1.8;
    color: #000000;
}

/* Gallery */
.ceremony-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ceremony-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.ceremony-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Sidebar */
.ceremony-store-info-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ceremony-store-info-box h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
}

.ceremony-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.ceremony-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ceremony-info-item .dashicons {
    font-size: 24px;
    color: #000000;
    flex-shrink: 0;
}

.ceremony-info-content {
    flex: 1;
}

.ceremony-info-content strong {
    display: block;
    font-size: 0.85em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.ceremony-info-content p {
    margin: 0;
    color: #333;
}

.ceremony-info-content a {
    color: #000000;
    text-decoration: none;
}

.ceremony-info-content a:hover {
    text-decoration: none;
}

/* Business Hours */
.ceremony-hours-list {
    font-size: 0.95em;
}

.ceremony-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ceremony-hours-item:last-child {
    border-bottom: none;
}

.ceremony-day {
    font-weight: 600;
    color: #000;
}

.ceremony-time {
    color: #000;
}

/* Contact Form */
.ceremony-store-contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 968px) {
    .ceremony-store-grid {
        grid-template-columns: 1fr;
    }
    
    .ceremony-store-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .ceremony-stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .ceremony-store-name {
        font-size: 2em;
    }
    
    .ceremony-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .ceremony-stores-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ceremony-store-container {
        padding: 0 15px;
    }
    
    .ceremony-store-name {
        font-size: 1.75em;
    }
}
