.shop-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.shop-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
    line-height: 1.2;
}

.shop-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.shop-sidebar {
    flex: 0 0 300px;
}

.shop-content {
    flex: 1;
    min-width: 0;
}

.shop-filters {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.filter-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.filter-title i {
    font-size: 1.1rem;
}

.filter-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-of-type {
    border-bottom: none;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.filter-count {
    margin-left: auto;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 2.75rem;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-box > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.search-clear:active {
    transform: translateY(-50%) scale(0.95);
}

.filter-results {
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.filter-results i {
    color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-buttons-wrapper {
    position: relative;
    width: 100%;
}

.filter-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    border: 2px solid transparent;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.filter-btn i {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-btn span {
    flex: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    transform: translateX(3px);
}

.filter-btn:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active i {
    color: var(--primary-color);
}

.filter-btn.active::before {
    transform: scaleY(1);
}

.filter-buttons-wrapper {
    position: relative;
    width: 100%;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.filter-btn.active:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3.25rem;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shop-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInCard 0.4s ease-out forwards;
}

.shop-card:nth-child(1) { animation-delay: 0.05s; }
.shop-card:nth-child(2) { animation-delay: 0.1s; }
.shop-card:nth-child(3) { animation-delay: 0.15s; }
.shop-card:nth-child(4) { animation-delay: 0.2s; }
.shop-card:nth-child(5) { animation-delay: 0.25s; }
.shop-card:nth-child(6) { animation-delay: 0.3s; }
.shop-card:nth-child(n+7) { animation-delay: 0.35s; }

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.shop-card:hover::before {
    transform: scaleX(1);
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.shop-card-header {
    margin-bottom: 1.5rem;
}

.shop-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.shop-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.shop-card-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.shop-card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 44px;
}

.shop-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.shop-card-specs {
    margin-bottom: 1.5rem;
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-item:first-child {
    padding-top: 0;
}

.spec-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}

.shop-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-order {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-order:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.btn-order:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-order:active {
    transform: translateY(0);
}

.btn-order i {
    font-size: 1rem;
}

.stock-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stock-badge.in-stock {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.stock-badge.low-stock {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.no-results {
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeIn 0.6s ease-out;
}

.no-results i {
    font-size: 4.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.purple-gradient { 
    background: linear-gradient(135deg, #8B5CF6, #7C3AED); 
    color: white;
}
.blue-gradient { 
    background: linear-gradient(135deg, #3B82F6, #2563EB); 
    color: white;
}
.green-gradient { 
    background: linear-gradient(135deg, #10B981, #059669); 
    color: white;
}
.orange-gradient { 
    background: linear-gradient(135deg, #FF6B35, #F7931E); 
    color: white;
}
.cyan-gradient { 
    background: linear-gradient(135deg, #06B6D4, #0891B2); 
    color: white;
}
.red-gradient { 
    background: linear-gradient(135deg, #EF4444, #DC2626); 
    color: white;
}
.yellow-gradient { 
    background: linear-gradient(135deg, #F59E0B, #D97706); 
    color: white;
}
.slate-gradient { 
    background: linear-gradient(135deg, #64748B, #475569); 
    color: white;
}
.pink-gradient { 
    background: linear-gradient(135deg, #EC4899, #DB2777); 
    color: white;
}
.indigo-gradient { 
    background: linear-gradient(135deg, #6366F1, #4F46E5); 
    color: white;
}
.teal-gradient { 
    background: linear-gradient(135deg, #14B8A6, #0D9488); 
    color: white;
}

.products-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.products-loading p {
    font-size: 1.1rem;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .shop-hero h1 {
        font-size: 3rem;
    }

    .shop-sidebar {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 6rem 0 3rem;
    }

    .shop-hero h1 {
        font-size: 2.5rem;
    }

    .shop-hero p {
        font-size: 1.1rem;
    }

    .shop-products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shop-layout {
        flex-direction: column;
    }

    .shop-sidebar {
        flex: 1;
        width: 100%;
    }

    .shop-filters {
        margin-bottom: 2rem;
    }

    .filter-header {
        padding: 1.25rem;
    }

    .filter-title {
        font-size: 1.1rem;
    }

    .filter-section {
        padding: 1.25rem;
    }

    .section-label {
        font-size: 0.85rem;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .search-box input {
        padding: 0.85rem 3rem 0.85rem 2.5rem;
        font-size: 0.9rem;
    }

    .shop-card {
        padding: 1.75rem;
    }

    .shop-card h3 {
        font-size: 1.35rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        padding: 5.5rem 0 2.5rem;
    }

    .shop-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .shop-hero p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .shop-filters {
        padding: 1.25rem;
        margin-bottom: 2rem;
        border-radius: var(--radius-lg);
    }

    .filter-header {
        margin-bottom: 0.75rem;
    }

    .layout-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .filter-group {
        gap: 0.85rem;
    }

    .filter-label {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        text-align: left;
    }

    .filter-buttons {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.5rem;
        display: flex;
        flex-wrap: nowrap;
        position: relative;
    }

    .filter-buttons::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0.5rem;
        width: 40px;
        background: linear-gradient(to right, transparent, var(--bg-secondary));
        pointer-events: none;
    }

    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .filter-buttons::-webkit-scrollbar-track {
        background: var(--bg-primary);
        border-radius: 2px;
    }

    .filter-buttons::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: var(--radius-md);
        flex: 0 0 auto;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .search-box {
        min-width: auto;
    }

    .search-box input {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
        font-size: 0.9rem;
    }

    .search-box i {
        left: 1rem;
        font-size: 0.9rem;
    }

    .shop-products {
        gap: 1.25rem;
    }

    .shop-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .shop-card:active {
        transform: scale(0.98);
    }

    .shop-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 0.85rem;
    }

    .shop-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .shop-card-category {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
        margin-bottom: 0.85rem;
    }

    .shop-card-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        min-height: auto;
    }

    .shop-card-price {
        padding: 0.85rem 0;
        margin-bottom: 1.25rem;
    }

    .price-amount {
        font-size: 1.85rem;
    }

    .price-period {
        font-size: 0.85rem;
    }

    .shop-card-specs {
        padding: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .spec-item {
        padding: 0.55rem 0;
        flex-wrap: nowrap;
        gap: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .spec-label {
        font-size: 0.85rem;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .spec-value {
        font-size: 0.85rem;
        text-align: right;
        flex: 0 0 auto;
        white-space: nowrap;
        font-weight: 600;
    }

    .shop-card-actions {
        gap: 0.65rem;
    }

    .btn-order {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        border-radius: var(--radius-md);
    }

    .btn-order i {
        font-size: 0.95rem;
    }

    .stock-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
        border-radius: var(--radius-md);
    }

    .no-results {
        padding: 3.5rem 1.5rem;
    }

    .no-results i {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .no-results h3 {
        font-size: 1.35rem;
        margin-bottom: 0.65rem;
    }

    .no-results p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .shop-hero {
        padding: 5rem 0 2rem;
    }

    .shop-hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .shop-hero p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .shop-filters {
        padding: 1rem;
    }

    .shop-card {
        padding: 1.25rem;
    }

    .shop-card h3 {
        font-size: 1.15rem;
    }

    .price-amount {
        font-size: 1.65rem;
    }

    .filter-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.75rem;
    }

    .spec-label,
    .spec-value {
        font-size: 0.8rem;
    }

    .btn-order {
        padding: 0.8rem 1.1rem;
        font-size: 0.85rem;
    }

    .shop-card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .filter-btn {
        padding: 0.85rem 1.25rem;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .filter-btn:active {
        transform: scale(0.96);
    }

    .btn-order {
        padding: 1rem 1.5rem;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .btn-order:active {
        transform: scale(0.98);
    }

    .search-box input {
        padding: 0.875rem 1rem 0.875rem 3rem;
        min-height: 44px;
    }

    .shop-card:hover {
        transform: none;
    }

    .shop-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .filter-btn::before {
        display: none;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}