/* Featured Stores Slider Styles */
:root {
    --dz-glass: rgba(255, 255, 255, 0.08);
    --dz-glass-border: rgba(255, 255, 255, 0.4);
    --dz-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.1);
    --dz-verified: #1d9bf0;
}

.dz-featured-stores-section {
    padding: 20px 0 100px;
    background: #f8f9fa;
    overflow: hidden;
}

/* Section Header (Matches Products) */
.dz-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dz-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Slider Layout */
.dz-stores-slider-window {
    overflow: hidden;
    margin: 0 -10px;
    padding: 15px 10px 40px;
}

.dz-stores-grid {
    display: flex !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 0 !important;
    width: 100% !important;
}

/* Store Card Styles */
.dz-store-card {
    flex: 0 0 25%; /* 4 columns on desktop */
    padding: 12px !important;
    box-sizing: border-box;
}

.dz-store-card.glassy {
    background: var(--dz-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    margin: 0 10px;
    box-shadow: var(--dz-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent; /* Hide default border, use ::before */
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Premium Gradient Stroke */
.dz-store-card.glassy::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2.5px; /* Stroke width */
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.1), rgba(255,0,110,0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.dz-store-card.glassy:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.dz-store-card.glassy:hover::before {
    background: linear-gradient(135deg, #fff, var(--dz-pink), #fff);
}

.dz-store-card-content {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Round Store Logo */
.dz-store-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--dz-pink);
    overflow: hidden;
}

.dz-store-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.dz-store-name {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
}

.dz-verified-badge {
    color: var(--dz-verified);
    font-size: 18px;
}

.dz-store-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dz-store-location i {
    color: var(--dz-pink);
}

/* Hero-like Button */
.dz-visit-store-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dz-pink);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dz-visit-store-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.4);
    filter: brightness(1.1);
}

/* Responsive Flex */
@media (max-width: 1200px) {
    .dz-store-card { flex: 0 0 33.333%; }
}

@media (max-width: 900px) {
    .dz-store-card { flex: 0 0 50%; }
}

@media (max-width: 768px) {
    .dz-featured-stores-section { padding: 40px 0 80px; }
    .dz-store-card { flex: 0 0 100%; } /* Mobile 1 column */
    .dz-store-card.glassy { margin: 0; }
    .dz-store-name { font-size: 18px; }
    .dz-store-logo-wrapper { width: 80px; height: 80px; }
    .dz-visit-store-btn { padding: 10px 20px; font-size: 13px; }
}

/* Spacing between sections */
.dz-featured-section + .dz-featured-stores-section {
    margin-top: 0;
}
