| 1 |
|
| 2 |
/* Apple-Style Refinements for Collections Rows */ |
| 3 |
|
| 4 |
/* Pagination */ |
| 5 |
.collections-rows-pagination { |
| 6 |
margin-top: 60px; |
| 7 |
margin-bottom: 40px; |
| 8 |
display: flex; |
| 9 |
justify-content: center; |
| 10 |
} |
| 11 |
|
| 12 |
.collections-rows-pagination .pagination-inner { |
| 13 |
display: flex; |
| 14 |
gap: 8px; |
| 15 |
align-items: center; |
| 16 |
background: #fff; |
| 17 |
padding: 8px; |
| 18 |
border-radius: 100px; |
| 19 |
box-shadow: 0 2px 10px rgba(0,0,0,0.05); |
| 20 |
} |
| 21 |
|
| 22 |
.collections-rows-pagination .page-numbers { |
| 23 |
display: flex; |
| 24 |
align-items: center; |
| 25 |
justify-content: center; |
| 26 |
min-width: 36px; |
| 27 |
height: 36px; |
| 28 |
padding: 0 12px; |
| 29 |
border-radius: 18px; |
| 30 |
font-size: 14px; |
| 31 |
font-weight: 500; |
| 32 |
color: #1d1d1f; |
| 33 |
text-decoration: none; |
| 34 |
transition: all 0.2s ease; |
| 35 |
border: 1px solid transparent; |
| 36 |
} |
| 37 |
|
| 38 |
.collections-rows-pagination .page-numbers:hover:not(.current) { |
| 39 |
background: #f5f5f7; |
| 40 |
color: #000; |
| 41 |
} |
| 42 |
|
| 43 |
.collections-rows-pagination .page-numbers.current { |
| 44 |
background: #1d1d1f; |
| 45 |
color: #fff; |
| 46 |
cursor: default; |
| 47 |
} |
| 48 |
|
| 49 |
/* Card Refinements */ |
| 50 |
.collection-row-item { |
| 51 |
border: none; |
| 52 |
box-shadow: 0 4px 20px rgba(0,0,0,0.06); |
| 53 |
border-radius: 18px; |
| 54 |
background: #fff; |
| 55 |
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); |
| 56 |
} |
| 57 |
|
| 58 |
.collection-row-item:hover { |
| 59 |
transform: scale(1.02) translateY(-2px); |
| 60 |
box-shadow: 0 14px 40px rgba(0,0,0,0.12); |
| 61 |
z-index: 2; |
| 62 |
} |
| 63 |
|
| 64 |
.collection-row-item img { |
| 65 |
height: 190px; /* Slightly taller */ |
| 66 |
transition: transform 0.5s ease; |
| 67 |
} |
| 68 |
|
| 69 |
.collection-row-item:hover img { |
| 70 |
transform: scale(1.05); |
| 71 |
} |
| 72 |
|
| 73 |
.collection-row-item-info { |
| 74 |
padding: 18px 20px; |
| 75 |
} |
| 76 |
|
| 77 |
.collection-row-item-title { |
| 78 |
font-size: 15px; |
| 79 |
font-weight: 600; |
| 80 |
letter-spacing: -0.01em; |
| 81 |
margin-bottom: 6px; |
| 82 |
} |
| 83 |
|
| 84 |
.collection-row-item-meta { |
| 85 |
font-size: 12px; |
| 86 |
color: #86868b; |
| 87 |
font-weight: 500; |
| 88 |
} |
| 89 |
|
| 90 |
/* View All Link */ |
| 91 |
.collection-row-view-all { |
| 92 |
font-size: 14px; |
| 93 |
font-weight: 500; |
| 94 |
color: #0066cc; |
| 95 |
background: rgba(0, 102, 204, 0.08); |
| 96 |
padding: 6px 14px; |
| 97 |
border-radius: 20px; |
| 98 |
transition: all 0.2s ease; |
| 99 |
} |
| 100 |
|
| 101 |
.collection-row-view-all:hover { |
| 102 |
background: rgba(0, 102, 204, 0.15); |
| 103 |
text-decoration: none; |
| 104 |
opacity: 1; |
| 105 |
} |
| 106 |
|
| 107 |
/* Dark Mode Overrides */ |
| 108 |
body.ka-v3-dark .collections-rows-pagination .pagination-inner { |
| 109 |
background: #2c2c2e; |
| 110 |
box-shadow: 0 4px 12px rgba(0,0,0,0.2); |
| 111 |
} |
| 112 |
|
| 113 |
body.ka-v3-dark .collections-rows-pagination .page-numbers { |
| 114 |
color: #f5f5f7; |
| 115 |
} |
| 116 |
|
| 117 |
body.ka-v3-dark .collections-rows-pagination .page-numbers:hover:not(.current) { |
| 118 |
background: #3a3a3c; |
| 119 |
} |
| 120 |
|
| 121 |
body.ka-v3-dark .collections-rows-pagination .page-numbers.current { |
| 122 |
background: #fff; |
| 123 |
color: #000; |
| 124 |
} |
| 125 |
|
| 126 |
body.ka-v3-dark .collection-row-item { |
| 127 |
background: #1c1c1e; |
| 128 |
box-shadow: 0 4px 20px rgba(0,0,0,0.3); |
| 129 |
} |
| 130 |
|
| 131 |
body.ka-v3-dark .collection-row-item:hover { |
| 132 |
box-shadow: 0 14px 40px rgba(0,0,0,0.5); |
| 133 |
} |
| 134 |
|
| 135 |
body.ka-v3-dark .collection-row-view-all { |
| 136 |
color: #2997ff; |
| 137 |
background: rgba(41, 151, 255, 0.15); |
| 138 |
} |
| 139 |
|
| 140 |
body.ka-v3-dark .collection-row-view-all:hover { |
| 141 |
background: rgba(41, 151, 255, 0.25); |
| 142 |
} |
| 143 |
|