/**
 * Shop Page Styles - Premium Design
 * Modern, minimal, professional
 * Color Theme: Black, White, #16436f
 * @package DJI_Market
 */

/* =================================================================
   CSS VARIABLES
   ================================================================= */
:root {
    --shop-primary: #16436f;
    --shop-primary-dark: #0f2f4f;
    --shop-primary-light: #1e5a94;
    --shop-accent: #16436f;
    --shop-dark: #0f172a;
    --shop-gray-900: #1e293b;
    --shop-gray-700: #334155;
    --shop-gray-600: #475569;
    --shop-gray-500: #64748b;
    --shop-gray-400: #94a3b8;
    --shop-gray-300: #cbd5e1;
    --shop-gray-200: #e2e8f0;
    --shop-gray-100: #f1f5f9;
    --shop-gray-50: #f8fafc;
    --shop-white: #ffffff;
    --shop-radius-sm: 8px;
    --shop-radius-md: 12px;
    --shop-radius-lg: 16px;
    --shop-radius-xl: 24px;
    --shop-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shop-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shop-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shop-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* =================================================================
   HERO SECTION - WORLD CLASS DESIGN
   ================================================================= */
.shop-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
    margin: -32px -20px 48px -20px;
    padding: 80px 20px;
}

.shop-hero::before {
    display: none;
}

/* Premium subtle noise texture overlay */
.shop-hero::after {
    display: none;
}

.shop-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.shop-hero-content {
    color: var(--shop-white);
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.shop-hero-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.shop-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.shop-hero-title span {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.shop-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--shop-gray-400);
    margin: 0 0 32px 0;
    max-width: 500px;
}

.shop-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.shop-hero-stat {
    text-align: left;
}

.shop-hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--shop-white);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.shop-hero-stat-label {
    font-size: 13px;
    color: var(--shop-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

/* Decorative elements */
.shop-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.shop-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.shop-hero-image:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Floating badges around image */
.shop-hero-float-badge {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--shop-radius-md);
    box-shadow: var(--shop-shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.shop-hero-float-badge:nth-child(1) {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.shop-hero-float-badge:nth-child(2) {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

.shop-hero-float-badge:nth-child(3) {
    bottom: 5%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.shop-hero-float-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--shop-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero-float-badge-icon.blue { background: #16436f; }
.shop-hero-float-badge-icon.green { background: #16436f; }
.shop-hero-float-badge-icon.orange { background: #16436f; }

.shop-hero-float-badge-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.shop-hero-float-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-gray-700);
}

/* =================================================================
   FEATURES SECTION
   ================================================================= */
.shop-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.shop-feature-card {
    background: var(--shop-white);
    border: 1px solid var(--shop-gray-200);
    border-radius: var(--shop-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-feature-card:hover {
    border-color: var(--shop-primary);
    box-shadow: var(--shop-shadow-md);
    transform: translateY(-4px);
}

.shop-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--shop-gray-100);
    border-radius: var(--shop-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shop-feature-card:hover .shop-feature-icon {
    background: linear-gradient(135deg, var(--shop-primary), var(--shop-primary-dark));
}

.shop-feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--shop-gray-600);
    transition: color 0.3s ease;
}

.shop-feature-card:hover .shop-feature-icon svg {
    color: white;
}

.shop-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--shop-gray-900);
    margin: 0 0 6px 0;
}

.shop-feature-desc {
    font-size: 13px;
    color: var(--shop-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* =================================================================
   CATEGORY CARDS (Quick Filters)
   ================================================================= */
.shop-quick-categories {
    margin-bottom: 48px;
}

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

.shop-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-gray-900);
    margin: 0;
}

.shop-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--shop-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.shop-section-link:hover {
    gap: 10px;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-category-card {
    position: relative;
    background: var(--shop-white);
    border: 1px solid var(--shop-gray-200);
    border-radius: var(--shop-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.shop-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--shop-primary), var(--shop-primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-category-card:hover {
    border-color: var(--shop-primary);
    box-shadow: var(--shop-shadow-lg);
    transform: translateY(-2px);
}

.shop-category-card:hover::before {
    opacity: 1;
}

.shop-category-image {
    width: 80px;
    height: 80px;
    border-radius: var(--shop-radius-md);
    background: var(--shop-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-category-image svg {
    width: 40px;
    height: 40px;
    color: var(--shop-gray-400);
}

.shop-category-info {
    flex: 1;
}

.shop-category-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--shop-gray-900);
    margin: 0 0 4px 0;
}

.shop-category-count {
    font-size: 13px;
    color: var(--shop-gray-500);
}

.shop-category-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--shop-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shop-category-card:hover .shop-category-arrow {
    background: var(--shop-primary);
    transform: translateX(4px);
}

.shop-category-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--shop-gray-500);
    transition: color 0.3s ease;
}

.shop-category-card:hover .shop-category-arrow svg {
    color: white;
}

/* =================================================================
   PRODUCTS SECTION
   ================================================================= */
.shop-products-section {
    margin-bottom: 64px;
}

.shop-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-products-count {
    font-size: 14px;
    color: var(--shop-gray-500);
}

.shop-products-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hide default WooCommerce result count outside our controls */
.woocommerce-result-count {
    display: none !important;
}

/* Style WooCommerce ordering dropdown */
.shop-ordering .woocommerce-ordering {
    display: block !important;
}

.shop-ordering .woocommerce-ordering .orderby,
.shop-products-controls .woocommerce-ordering .orderby,
.woocommerce-ordering select.orderby {
    padding: 10px 36px 10px 16px;
    border: 1px solid var(--shop-gray-300);
    border-radius: var(--shop-radius-sm);
    font-size: 14px;
    color: var(--shop-gray-700);
    background: var(--shop-white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 180px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-ordering .woocommerce-ordering .orderby:hover,
.shop-products-controls .woocommerce-ordering .orderby:hover {
    border-color: var(--shop-gray-400);
}

.shop-ordering .woocommerce-ordering .orderby:focus,
.shop-products-controls .woocommerce-ordering .orderby:focus {
    outline: none;
    border-color: var(--shop-primary);
    box-shadow: 0 0 0 3px rgba(20, 100, 111, 0.1);
}

/* Custom ordering dropdown (legacy) */
.shop-ordering-select {
    padding: 10px 36px 10px 16px;
    border: 1px solid var(--shop-gray-300);
    border-radius: var(--shop-radius-sm);
    font-size: 14px;
    color: var(--shop-gray-700);
    background: var(--shop-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* =================================================================
   TRUST SECTION
   ================================================================= */
.shop-trust-section {
    background: var(--shop-gray-50);
    border-radius: var(--shop-radius-xl);
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
}

.shop-trust-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-gray-900);
    margin: 0 0 8px 0;
}

.shop-trust-subtitle {
    font-size: 15px;
    color: var(--shop-gray-500);
    margin: 0 0 32px 0;
}

.shop-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.shop-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.shop-trust-icon {
    width: 64px;
    height: 64px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shop-shadow-sm);
}

.shop-trust-icon svg {
    width: 32px;
    height: 32px;
    color: var(--shop-primary);
}

.shop-trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--shop-gray-700);
}

/* =================================================================
   HIDE SIDEBAR AND FILTERS ON MAIN SHOP PAGE
   ================================================================= */
.shop-page .shop-sidebar {
    display: none !important;
}

.shop-page .shop-layout {
    display: block !important;
}

.shop-page .shop-main {
    width: 100% !important;
    max-width: 100% !important;
}

.shop-page .active-filter-bar,
.shop-page .active-series-model-hint,
.shop-page .shop-controls {
    display: none !important;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 1024px) {
    .shop-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .shop-hero-content {
        order: 1;
    }
    
    .shop-hero-visual {
        order: 2;
    }
    
    .shop-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .shop-hero-stats {
        justify-content: center;
    }
    
    .shop-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: auto;
        padding: 60px 20px;
        margin: -20px -16px 32px -16px;
    }
    
    .shop-hero-title {
        font-size: 32px;
    }
    
    .shop-hero-description {
        font-size: 16px;
    }
    
    .shop-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shop-hero-stat-value {
        font-size: 24px;
    }
    
    .shop-hero-image-wrapper {
        max-width: 300px;
    }
    
    .shop-hero-float-badge {
        display: none;
    }
    
    .shop-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .shop-feature-card {
        padding: 20px 16px;
    }
    
    .shop-feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .shop-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .shop-feature-title {
        font-size: 14px;
    }
    
    .shop-feature-desc {
        font-size: 12px;
    }
    
    .shop-category-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-trust-section {
        padding: 32px 20px;
    }
    
    .shop-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .shop-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .shop-hero-stat {
        text-align: center;
    }
    
    .shop-section-title {
        font-size: 20px;
    }
}

/* =================================================================
   PRODUCT GRID ENHANCEMENTS
   ================================================================= */
.shop-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 1200px) {
    .shop-page ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-page ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* =================================================================
   CTA SECTION
   ================================================================= */
.shop-cta-section {
    background: linear-gradient(135deg, var(--shop-dark) 0%, var(--shop-gray-900) 100%);
    border-radius: var(--shop-radius-xl);
    padding: 64px 48px;
    text-align: center;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.shop-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(22, 67, 111, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(22, 67, 111, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.shop-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.shop-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--shop-white);
    margin: 0 0 12px 0;
}

.shop-cta-description {
    font-size: 16px;
    color: var(--shop-gray-400);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.shop-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--shop-radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-cta-btn-primary {
    background: #16436f;
    color: white;
    box-shadow: none;
}

.shop-cta-btn-primary:hover {
    transform: translateY(-2px);
    background: #1e5a94;
    box-shadow: 0 4px 12px rgba(22, 67, 111, 0.2);
    color: white;
}

.shop-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.shop-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

/* =================================================================
   NEWSLETTER SECTION
   ================================================================= */
.shop-newsletter {
    background: var(--shop-gray-50);
    border-radius: var(--shop-radius-xl);
    padding: 48px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.shop-newsletter-content {
    flex: 1;
}

.shop-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-gray-900);
    margin: 0 0 8px 0;
}

.shop-newsletter-desc {
    font-size: 15px;
    color: var(--shop-gray-500);
    margin: 0;
}

.shop-newsletter-form {
    display: flex;
    gap: 12px;
}

.shop-newsletter-input {
    padding: 14px 20px;
    border: 1px solid var(--shop-gray-300);
    border-radius: var(--shop-radius-md);
    font-size: 15px;
    min-width: 280px;
    transition: border-color 0.2s ease;
}

.shop-newsletter-input:focus {
    outline: none;
    border-color: var(--shop-primary);
}

.shop-newsletter-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--shop-primary), var(--shop-primary-dark));
    color: white;
    border: none;
    border-radius: var(--shop-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(22, 67, 111, 0.3);
}

@media (max-width: 768px) {
    .shop-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .shop-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .shop-newsletter-input {
        min-width: 100%;
    }
}

/* =================================================================
   PRODUCT SEARCH SECTION
   ================================================================= */
.shop-search-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.shop-search-header {
    margin-bottom: 32px;
}

.shop-search-section .shop-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--shop-dark);
    margin: 0 0 12px 0;
}

.shop-search-subtitle {
    font-size: 16px;
    color: var(--shop-gray-500);
    margin: 0;
}

.shop-search-form {
    max-width: 700px;
    margin: 0 auto;
}

.shop-search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.shop-search-input-wrapper:focus-within {
    box-shadow: 0 4px 24px rgba(22, 67, 111, 0.15);
    border-color: rgba(22, 67, 111, 0.3);
}

.shop-search-icon {
    width: 24px;
    height: 24px;
    margin-left: 16px;
    color: var(--shop-gray-400);
    flex-shrink: 0;
}

.shop-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px;
    font-size: 16px;
    color: var(--shop-dark);
    outline: none;
}

.shop-search-input::placeholder {
    color: var(--shop-gray-400);
}

.shop-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--shop-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.shop-search-btn:hover {
    background: var(--shop-gray-700);
    transform: translateX(4px);
}

.shop-search-btn svg {
    width: 18px;
    height: 18px;
}

.shop-search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.shop-search-label {
    font-size: 13px;
    color: var(--shop-gray-500);
    font-weight: 500;
}

.shop-search-tag {
    display: inline-block;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--shop-gray-200);
    border-radius: 20px;
    font-size: 13px;
    color: var(--shop-gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-search-tag:hover {
    background: var(--shop-dark);
    border-color: var(--shop-dark);
    color: white;
}

@media (max-width: 768px) {
    .shop-search-section {
        padding: 32px 20px;
    }
    
    .shop-search-section .shop-section-title {
        font-size: 22px;
    }
    
    .shop-search-input-wrapper {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }
    
    .shop-search-icon {
        display: none;
    }
    
    .shop-search-input {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .shop-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .shop-search-suggestions {
        gap: 8px;
    }
    
    .shop-search-label {
        width: 100%;
    }
}

/* =================================================================
   MINIMAL HERO STYLES (Main Shop Page)
   ================================================================= */
.shop-hero--minimal {
    min-height: 220px;
    padding: 50px 20px;
    background: #0a0a0a;
}

.shop-hero--minimal::before {
    display: none;
}

.shop-hero--minimal::after {
    display: none;
}

.shop-hero--minimal .shop-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 900px;
}

.shop-hero--minimal .shop-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.shop-hero--minimal .shop-hero-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    color: #ffffff;
}

.shop-hero--minimal .shop-hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* =================================================================
   TAG PAGE HERO STYLES
   ================================================================= */
.shop-hero--tag {
    min-height: 220px;
    padding: 50px 20px;
    background: #0a0a0a;
}

.shop-hero--tag::before,
.shop-hero--tag::after {
    display: none;
}

.shop-hero--tag .shop-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.shop-hero--tag .shop-hero-title {
    font-size: clamp(28px, 4vw, 42px);
    color: #ffffff;
}

.shop-hero--tag .shop-hero-description {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.7);
}

.shop-hero--tag .shop-hero-stats {
    display: none !important;
}

.shop-hero--tag .shop-hero-visual {
    display: none !important;
}

/* Hero metinlerinde padding - sola yapışık olmasın */
.shop-hero-content {
    padding-left: 20px;
}

/* =================================================================
   CTA SECTION - MINIMAL WHITE
   ================================================================= */
.shop-cta-section--minimal {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.shop-cta-section--minimal::before {
    display: none;
}

.shop-cta-section--minimal .shop-cta-title {
    color: #0f172a;
}

.shop-cta-section--minimal .shop-cta-description {
    color: #64748b;
}

.shop-cta-section--minimal .shop-cta-btn-secondary {
    color: #0f172a;
    border-color: #e2e8f0;
    background: #f8fafc;
}

.shop-cta-section--minimal .shop-cta-btn-secondary:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* =================================================================
   MOBILE RESPONSIVE - OVERFLOW FIX
   ================================================================= */
body {
    overflow-x: hidden;
}

.shop-page {
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .shop-hero {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .shop-hero-content {
        padding-left: 0;
        padding: 0 16px;
    }
    
    .shop-hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .shop-hero--minimal {
        min-height: auto;
        padding: 32px 16px;
    }
    
    .shop-hero--minimal .shop-hero-title {
        font-size: 22px;
        font-weight: 600;
    }
    
    .shop-hero--minimal .shop-hero-description {
        font-size: 13px;
    }
    
    .shop-hero--tag {
        min-height: auto;
        padding: 32px 16px;
    }
    
    .shop-hero--tag .shop-hero-title {
        font-size: 22px;
    }
    
    .shop-hero--tag .shop-hero-description {
        font-size: 13px;
    }
    
    /* Features section mobilde 2 sütun */
    .shop-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .shop-feature-card {
        padding: 16px 12px;
    }
    
    .shop-feature-title {
        font-size: 13px;
    }
    
    .shop-feature-desc {
        font-size: 11px;
    }
}
