/* ==============================================
   PAULSHOP - E-Commerce Styling
   Distinct from PaulCars with emerald/teal theme
   ============================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --shop-primary: #059669;
    --shop-primary-light: #10b981;
    --shop-primary-dark: #047857;
    --shop-accent: #0d9488;
    --shop-bg: #f8fafb;
    --shop-surface: #ffffff;
    --shop-text: #1e293b;
    --shop-text-light: #64748b;
    --shop-border: #e2e8f0;
    --shop-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shop-shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shop-radius: 12px;
    --shop-radius-lg: 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--shop-bg);
    color: var(--shop-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======================
   NAVIGATION
   ====================== */
.shop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--shop-border);
    transition: all 0.3s ease;
}

.shop-nav.scrolled {
    box-shadow: var(--shop-shadow-lg);
}

.shop-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shop-nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.shop-nav-hub {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--shop-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-text-light);
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid var(--shop-border);
}

.shop-nav-hub:hover {
    background: var(--shop-primary);
    color: #fff;
    border-color: var(--shop-primary);
}

.shop-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-nav-logo {
    height: 32px;
    width: auto;
}

.shop-nav-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--shop-text);
    letter-spacing: -0.3px;
}

.shop-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shop-nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
}

.shop-nav-links li a {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--shop-text-light);
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.shop-nav-links li a:hover,
.shop-nav-links li a.active {
    color: var(--shop-primary);
    background: rgba(5, 150, 105, 0.08);
}

.shop-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.shop-nav-search {
    display: flex;
    align-items: center;
    background: var(--shop-bg);
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.shop-nav-search:focus-within {
    border-color: var(--shop-primary);
}

.shop-nav-search input {
    border: none;
    background: none;
    padding: 8px 12px;
    font-size: 0.85rem;
    width: 180px;
    outline: none;
    font-family: inherit;
    color: var(--shop-text);
}

.shop-nav-search button {
    border: none;
    background: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--shop-text-light);
    transition: color 0.2s ease;
}

.shop-nav-search button:hover {
    color: var(--shop-primary);
}

.shop-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--shop-text);
    font-size: 16px;
}

.shop-nav-mobile {
    display: none;
    flex-direction: column;
    padding: 10px 20px 20px;
    border-top: 1px solid var(--shop-border);
}

.shop-nav-mobile.show {
    display: flex;
}

.shop-nav-mobile a {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--shop-text);
    border-bottom: 1px solid var(--shop-border);
}

.shop-nav-mobile a:last-child {
    border-bottom: none;
    color: var(--shop-primary);
    font-weight: 600;
}

/* ======================
   MAIN CONTENT
   ====================== */
.shop-main {
    padding-top: 64px;
    min-height: calc(100vh - 64px);
}

/* ======================
   HERO
   ====================== */
.shop-hero {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 30%, #047857 60%, #059669 100%);
    padding: 80px 0 90px;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shop-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.shop-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
    font-weight: 300;
}

.shop-hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.shop-hero-search-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shop-hero-search-inner i {
    color: var(--shop-text-light);
    padding: 0 14px;
    font-size: 16px;
}

.shop-hero-search-inner input {
    flex: 1;
    border: none;
    background: none;
    padding: 14px 0;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    color: var(--shop-text);
}

.shop-hero-search-inner button {
    background: var(--shop-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.shop-hero-search-inner button:hover {
    background: var(--shop-primary-dark);
}

/* ======================
   SECTIONS
   ====================== */
.shop-section {
    padding: 60px 0;
}

.shop-section-alt {
    background: #f1f5f9;
}

.shop-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shop-text);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.shop-section-header h2 i {
    color: var(--shop-primary);
    margin-right: 8px;
}

.shop-section-header p {
    color: var(--shop-text-light);
    font-size: 0.95rem;
}

/* ======================
   CATEGORIES GRID
   ====================== */
.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.shop-category-card {
    position: relative;
    background: var(--shop-surface);
    border-radius: var(--shop-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--shop-border);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.shop-category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    transition: opacity 0.3s ease;
}

.shop-category-card:hover .shop-category-bg {
    opacity: 0.1;
}

.shop-category-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--shop-primary);
    transition: all 0.3s ease;
}

.shop-category-card:hover .shop-category-icon {
    background: var(--shop-primary);
    color: #fff;
    transform: scale(1.1);
}

.shop-category-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--shop-text);
}

.shop-category-count {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: var(--shop-text-light);
}

/* ======================
   PRODUCTS GRID
   ====================== */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.shop-product-card {
    background: var(--shop-surface);
    border-radius: var(--shop-radius);
    overflow: hidden;
    border: 1px solid var(--shop-border);
    transition: all 0.3s ease;
    display: block;
}

.shop-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shop-shadow-lg);
    border-color: transparent;
}

.shop-product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.shop-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #cbd5e1;
}

.shop-product-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-product-badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f59e0b;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.shop-product-badge-condition {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.shop-product-info {
    padding: 16px;
}

.shop-product-category {
    font-size: 0.75rem;
    color: var(--shop-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--shop-text);
    margin: 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-brand {
    font-size: 0.8rem;
    color: var(--shop-text-light);
    margin-bottom: 8px;
    display: block;
}

.shop-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-product-price-current {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--shop-primary);
}

.shop-product-price-old {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* ======================
   PAGE HEADER
   ====================== */
.shop-page-header {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 48px 0 40px;
    color: #fff;
}

.shop-page-header-sm {
    padding: 24px 0 20px;
}

.shop-page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: -0.3px;
}

.shop-page-header h1 i {
    margin-right: 10px;
    opacity: 0.8;
}

.shop-page-header p {
    opacity: 0.8;
    margin-top: 8px;
    font-size: 0.95rem;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.shop-breadcrumb a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.shop-breadcrumb a:hover {
    opacity: 1;
}

.shop-breadcrumb i {
    font-size: 0.6rem;
}

/* ======================
   SIDEBAR
   ====================== */
.shop-sidebar {
    position: sticky;
    top: 84px;
}

.shop-sidebar-widget {
    background: var(--shop-surface);
    border-radius: var(--shop-radius);
    padding: 24px;
    border: 1px solid var(--shop-border);
    margin-bottom: 20px;
}

.shop-sidebar-widget h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--shop-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-sidebar-categories {
    list-style: none;
}

.shop-sidebar-categories li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--shop-text);
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.shop-sidebar-categories li a i {
    width: 18px;
    text-align: center;
    color: var(--shop-text-light);
    font-size: 0.85rem;
}

.shop-sidebar-categories li a .count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--shop-text-light);
    background: var(--shop-bg);
    padding: 2px 8px;
    border-radius: 10px;
}

.shop-sidebar-categories li a:hover,
.shop-sidebar-categories li a.active {
    background: rgba(5, 150, 105, 0.08);
    color: var(--shop-primary);
}

.shop-sidebar-categories li a:hover i,
.shop-sidebar-categories li a.active i {
    color: var(--shop-primary);
}

/* ======================
   RESULTS HEADER
   ====================== */
.shop-results-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--shop-border);
}

.shop-results-header p {
    font-size: 0.9rem;
    color: var(--shop-text-light);
}

/* ======================
   PRODUCT DETAIL
   ====================== */
.shop-product-detail {
    background: var(--shop-surface);
    border-radius: var(--shop-radius-lg);
    padding: 32px;
    border: 1px solid var(--shop-border);
}

.shop-product-gallery {
    position: sticky;
    top: 84px;
}

.shop-product-main-image {
    border-radius: var(--shop-radius);
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 1;
    margin-bottom: 12px;
}

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

.shop-product-no-image-lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #cbd5e1;
}

.shop-product-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--shop-border);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.shop-product-thumb.active,
.shop-product-thumb:hover {
    border-color: var(--shop-primary);
}

.shop-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-info-detail {
    padding-left: 16px;
}

.shop-product-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.shop-product-category-link {
    font-size: 0.8rem;
    color: var(--shop-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 20px;
    transition: background 0.2s ease;
}

.shop-product-category-link:hover {
    background: rgba(5, 150, 105, 0.15);
    color: var(--shop-primary);
}

.shop-product-condition {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.shop-product-condition-new {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.shop-product-condition-used {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.shop-product-condition-refurbished {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.shop-product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: var(--shop-text);
    letter-spacing: -0.3px;
}

.shop-product-brand-detail {
    font-size: 0.9rem;
    color: var(--shop-text-light);
    margin-bottom: 20px;
}

.shop-product-price-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--shop-bg);
    border-radius: var(--shop-radius);
    flex-wrap: wrap;
}

.shop-product-price-current-lg {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--shop-primary);
}

.shop-product-price-old-lg {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.shop-product-discount {
    background: #fef2f2;
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.shop-product-description,
.shop-product-specs {
    margin-bottom: 24px;
}

.shop-product-description h4,
.shop-product-specs h4,
.shop-product-order h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--shop-text);
}

.shop-product-desc-content {
    font-size: 0.9rem;
    color: var(--shop-text-light);
    line-height: 1.7;
}

.shop-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-specs-table tr {
    border-bottom: 1px solid var(--shop-border);
}

.shop-specs-table tr:last-child {
    border-bottom: none;
}

.shop-specs-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.spec-key {
    color: var(--shop-text-light);
    width: 40%;
    font-weight: 500;
}

.spec-value {
    color: var(--shop-text);
    font-weight: 600;
}

.shop-product-order {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border: 1px solid #a7f3d0;
    border-radius: var(--shop-radius);
    padding: 24px;
    margin-bottom: 20px;
}

.shop-product-order-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ======================
   BUTTONS
   ====================== */
.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.shop-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.shop-btn-primary {
    background: var(--shop-primary);
    color: #fff;
}

.shop-btn-primary:hover {
    background: var(--shop-primary-dark);
    color: #fff;
}

.shop-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.shop-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.shop-btn-call {
    background: var(--shop-text);
    color: #fff;
}

.shop-btn-call:hover {
    background: #334155;
    color: #fff;
    transform: translateY(-2px);
}

/* ======================
   SHARE
   ====================== */
.shop-product-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--shop-border);
}

.shop-product-share span {
    font-size: 0.85rem;
    color: var(--shop-text-light);
    font-weight: 500;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }

/* ======================
   EMPTY STATE
   ====================== */
.shop-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--shop-surface);
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-border);
}

.shop-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.shop-empty h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.shop-empty p {
    color: var(--shop-text-light);
    margin-bottom: 24px;
}

/* ======================
   PAGINATION
   ====================== */
.shop-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.shop-pagination .pagination {
    display: flex;
    gap: 4px;
    list-style: none;
}

.shop-pagination .page-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--shop-text);
    background: var(--shop-surface);
    border: 1px solid var(--shop-border);
    transition: all 0.2s ease;
}

.shop-pagination .page-link:hover,
.shop-pagination .page-item.active .page-link {
    background: var(--shop-primary);
    border-color: var(--shop-primary);
    color: #fff;
}

/* ======================
   CTA SECTION
   ====================== */
.shop-cta {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 60px 0;
}

.shop-cta-content {
    text-align: center;
    color: #fff;
}

.shop-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.shop-cta p {
    opacity: 0.8;
    margin-bottom: 24px;
    font-size: 1rem;
}

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

/* ======================
   FOOTER
   ====================== */
.shop-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
}

.shop-footer-widget {
    margin-bottom: 32px;
}

.shop-footer-widget h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.shop-footer-widget p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.shop-footer-widget ul {
    list-style: none;
}

.shop-footer-widget ul li {
    margin-bottom: 8px;
}

.shop-footer-widget ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.shop-footer-widget ul li a:hover {
    color: #10b981;
}

.shop-footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-footer-contact li i {
    color: var(--shop-primary-light);
    width: 16px;
}

.shop-footer-social {
    display: flex;
    gap: 8px;
}

.shop-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
    font-size: 14px;
}

.shop-footer-social a:hover {
    background: var(--shop-primary);
    color: #fff;
}

.shop-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 16px;
    text-align: center;
}

.shop-footer-bottom p {
    font-size: 0.85rem;
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 992px) {
    .shop-nav-center {
        display: none;
    }

    .shop-nav-toggle {
        display: block;
    }

    .shop-product-info-detail {
        padding-left: 0;
        margin-top: 24px;
    }

    .shop-product-detail {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .shop-nav-search {
        display: none;
    }

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

    .shop-hero {
        padding: 60px 0 70px;
    }

    .shop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-section {
        padding: 40px 0;
    }

    .shop-product-title {
        font-size: 1.4rem;
    }

    .shop-product-price-current-lg {
        font-size: 1.4rem;
    }

    .shop-page-header h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shop-categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-category-card {
        padding: 20px 16px;
    }

    .shop-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .shop-product-info {
        padding: 10px;
    }

    .shop-product-name {
        font-size: 0.85rem;
    }

    .shop-product-price-current {
        font-size: 0.9rem;
    }

    .shop-product-order-buttons {
        flex-direction: column;
    }
}
