.cim-collection-wrapper {
font-family: 'Outfit', sans-serif;
} .cim-filter-bar {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
gap: 2rem;
margin-bottom: 3rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 1rem;
}
@media (max-width: 768px) {
.cim-filter-bar {
flex-direction: column;
align-items: stretch;
}
}
.cim-search-form {
flex: 0 1 auto;
}
.cim-search-input-wrapper {
position: relative;
width: 250px;
}
@media (max-width: 768px) {
.cim-search-input-wrapper { width: 100%; }
}
.cim-search-input {
width: 100%;
background: transparent;
border: none;
border-bottom: 1px solid rgba(255,255,255,0.2);
padding: 0.75rem 0.5rem 0.75rem 0.5rem;
color: #ffffff;
font-size: 1rem;
font-family: 'Outfit', sans-serif;
outline: none;
transition: border-color 0.2s;
}
.cim-search-input:focus {
border-bottom-color: #ffffff;
}
.cim-search-submit {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
color: #ffffff;
opacity: 0.5;
cursor: pointer;
transition: opacity 0.2s;
}
.cim-search-submit:hover { opacity: 1; }
.cim-dropdown-group {
position: relative;
display: inline-block;
}
.cim-dropdown-btn {
background: transparent;
border: none;
color: #A0A0A0;
text-transform: uppercase;
letter-spacing: 0.1em;
font-size: 0.9rem;
cursor: pointer;
padding: 0.5rem 0;
border-bottom: 1px solid transparent;
transition: color 0.2s;
display: flex;
align-items: center;
}
.cim-dropdown-btn:hover {
color: #ffffff;
}
.cim-dropdown-icon {
font-size: 0.6rem;
margin-left: 0.5rem;
}
.cim-dropdown-menu {
display: none;
position: absolute;
right: 0;
top: 100%;
margin-top: 0;
width: 220px;
background-color: rgba(26,26,26,0.95);
backdrop-filter: blur(10px);
border: 1px solid #333;
z-index: 50;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}
.cim-dropdown-group:hover .cim-dropdown-menu {
display: block;
}
.cim-dropdown-item {
display: block;
padding: 0.75rem 1rem;
font-size: 0.875rem;
color: #A0A0A0;
text-decoration: none;
border-bottom: 1px solid #333;
transition: all 0.2s;
}
.cim-dropdown-item:last-child {
border-bottom: none;
}
.cim-dropdown-item:hover {
color: #ffffff;
background-color: #2A2A2A;
}
.cim-dropdown-item.active {
font-weight: 700;
color: #ffffff;
} .cim-pagination {
margin-top: 4rem;
display: flex;
justify-content: center;
gap: 1rem;
font-family: 'Outfit', sans-serif;
font-size: 0.875rem;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.cim-pagination a, .cim-pagination span {
padding: 0.5rem 1rem;
color: #A0A0A0;
text-decoration: none;
transition: color 0.2s;
}
.cim-pagination a:hover { color: #ffffff; }
.cim-pagination .current { color: #ffffff; font-weight: 700; border-bottom: 1px solid #fff; } .cim-product-grid {
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 3rem 2rem;
}
@media (min-width: 768px) {
.cim-product-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1024px) {
.cim-product-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
} .cim-product-card {
display: block;
position: relative;
aspect-ratio: 4 / 5;
background-color: #1A1A1A;
border: 1px solid #333;
overflow: hidden;
transition: background-color 0.3s, border-color 0.3s;
text-decoration: none;
}
.cim-product-card:hover {
background-color: #2A2A2A;
border-color: #CD7F32;
}
.cim-card-image-wrapper {
width: 100%;
height: 100%;
padding: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.cim-card-img {
object-fit: contain;
width: 100%;
height: 100%;
max-height: 100%;
transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cim-product-card:hover .cim-card-img {
transform: scale(1.08);
}
.cim-card-content {
background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 2.5rem 1.5rem 1.5rem 1.5rem;
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.cim-card-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.cim-card-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
margin: 0;
color: #ffffff;
transition: color 0.3s;
font-weight: 400;
}
.cim-product-card:hover .cim-card-title {
color: #CD7F32;
}
.cim-card-excerpt {
font-family: 'Outfit', sans-serif;
font-size: 0.85rem;
color: #A0A0A0;
margin: 0;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.cim-card-price {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
color: rgba(255,255,255,0.7);
margin: 0.5rem 0 0 0;
}
.cim-product-id-badge {
position: absolute;
top: 1rem;
left: 1rem;
z-index: 10;
font-size: 0.75rem;
font-weight: 600;
color: #CD7F32;
text-transform: uppercase;
letter-spacing: 0.05em;
background: rgba(0,0,0,0.4);
padding: 2px 6px;
border-radius: 2px;
} .cim-single-container {
max-width: 1400px;
margin: 0 auto;
padding: 60px 2rem 5rem 2rem;
font-family: 'Outfit', sans-serif;
color: #F0F0F0;
}
.cim-single-top {
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
margin-bottom: 6rem;
}
@media (min-width: 992px) {
.cim-single-top {
grid-template-columns: 1fr 1fr;
}
}
.cim-single-image-area img {
width: 100%;
height: auto;
max-height: 80vh;
object-fit: contain;
background-color: #1A1A1A;
border: 1px solid #222;
padding: 2rem;
box-sizing: border-box;
}
.cim-single-details-area {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.cim-dim-table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
font-size: 0.9rem;
color: #A0A0A0;
}
.cim-dim-table th {
text-align: left;
padding: 8px 0;
border-bottom: 1px solid #333;
font-weight: 500;
}
.cim-dim-table td {
padding: 8px 0;
border-bottom: 1px solid #333;
text-align: right;
color: #F0F0F0;
}
.cim-single-id {
font-family: 'Outfit', sans-serif;
font-size: 0.875rem;
color: #CD7F32;
text-transform: uppercase;
letter-spacing: 0.2em;
font-weight: 500;
margin-bottom: 0.5rem;
} .cim-single-gallery {
margin-top: 4rem;
border-top: 1px solid #333;
padding-top: 4rem;
}
.cim-gallery-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 2rem;
}
@media (min-width: 768px) {
.cim-gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.cim-gallery-grid {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
}
.cim-gallery-grid img {
width: 100%;
background-color: #1A1A1A;
aspect-ratio: 1;
object-fit: cover;
border: 1px solid #333;
transition: filter 0.3s;
}
.cim-gallery-grid img:hover {
filter: brightness(1.2);
} .cim-btn {
display: inline-block;
padding: 14px 32px;
background-color: #CD7F32;
color: white;
text-decoration: none;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.1em;
transition: background-color 0.2s;
border: 1px solid #CD7F32;
text-align: center;
}
.cim-btn:hover { background-color: #b06b29; color: white;}
.cim-btn-outline {
background-color: transparent;
border: 1px solid #F0F0F0;
}
.cim-btn-outline:hover {
background-color: white;
color: black;
} .cim-return-container {
margin-bottom: 2.5rem;
}
.cim-return-link {
display: inline-flex;
align-items: center;
color: #CD7F32;
text-decoration: none;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.15em;
font-family: 'Outfit', sans-serif;
transition: opacity 0.2s;
}
.cim-return-link:hover {
opacity: 0.7;
color: #CD7F32;
}