:root {
    --black: #0A0A0A;
    --dark: #141414;
    --charcoal: #1E1E1E;
    --gold: #D4AF37;
    --gold-light: #E8C874;
    --cream: #F5F2EB;
    --gray: #6B6B6B;
    --white: #FFFFFF;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    height: 45px;
    /* filter: brightness(0) invert(1); */
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--cream);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -14px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: none;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10,10,10,0.7) 0%, 
        rgba(10,10,10,0.4) 50%,
        rgba(10,10,10,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
}

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

/* Sections */
section {
    padding: 10rem 5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.section-text {
    max-width: 950px;
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 2;
}

/* About */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-image {
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0;
}

/* Architecture Portfolio */
#architecture {
    background: var(--dark);
    padding: 10rem 5rem;
    margin: 0;
    max-width: none;
}

#architecture .inner {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 8;
    height: 500px;
}

.portfolio-item.small {
    grid-column: span 4;
    height: 500px;
}

.portfolio-item.medium {
    grid-column: span 4;
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(61,61,61,0.8));
    opacity: 1;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .info {
    opacity: 1;
}

.portfolio-item .info h4 {
    color: white;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-align: left;
}



/* Artworks Section */
#artworks {
    background: var(--white);
    padding: 10rem 5rem;
    max-width: none;
}

#artworks .inner {
    max-width: 1500px;
    margin: 0 auto;
}

.artwork-categories {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    justify-content: center;
}

.category-btn {
    background: none;
    border: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    color: var(--gray);
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    color: var(--gold);
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.artwork-card {
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 1;
}

.artwork-card.fade-out {
    opacity: 0;
    transform: translateY(15px);
}

.artwork-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.artwork-card:hover {
    transform: translateY(-10px);
}

.artwork-image-container {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.artwork-card img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.artwork-card:hover img {
    transform: scale(1.05);
}

.artwork-card h4 {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.artwork-card .price {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.add-to-cart {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.add-to-cart:hover {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--dark);
}

.add-to-cart.added {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--dark);
}

/* Petrykivka Info */
.petrykivka-section {
    /* background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%); */
    background: var(--white);
    padding: 0rem 5rem 10rem;
    margin: 0;
    max-width: none;
    position: relative;
    overflow: hidden;
}

.petrykivka-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('images/Artworks/Florals - Petrykivka/Scarlet Tapestry.jpg') center/cover; */
    opacity: 0.05;
}

.petrykivka-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.petrykivka-section .section-text {
    margin: 0 auto 4rem;
    text-align: center;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.symbol-item {
    padding: 1rem;
    transition: all 0.3s ease;
}

.symbol-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.symbol-item h5 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.symbol-item p {
    color: var(--gray);
    font-size: 1.3rem;
    font-style: italic;
}

/* Contact */
#contact {
    background: var(--dark);
    text-align: center;
    padding: 12rem 5rem;
    position: relative;
    max-width: none;
}

#contact .section-text {
    margin: 0 auto 4rem;
}

.contact-link {
    display: inline-block;
    color: var(--cream);
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.contact-link:hover {
    color: var(--gold);
}

.location {
    margin-top: 3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    background: var(--black);
    text-align: center;
    padding: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background: var(--dark);
    z-index: 2001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: var(--cream);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--cream);
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.cart-item-details .price {
    color: var(--gold);
    font-size: 0.95rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.8rem;
    transition: color 0.3s ease;
    font-family: 'Times New Roman', Times, serif;
}

.remove-item:hover {
    color: var(--gold);
}

.cart-footer {
    padding: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--cream);
}

.cart-total span:last-child {
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1.3rem;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--gold-light);
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    padding: 4rem 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: grab;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox.dragging {
    cursor: grabbing;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.15s ease;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-zoom-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 3001;
}

.lightbox-zoom-controls button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-zoom-controls button:hover {
    background: rgba(212, 175, 55, 0.2);
}

.lightbox-zoom-level {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    min-width: 45px;
    text-align: center;
}

.artwork-image-container {
    cursor: zoom-in;
}

/* Responsive */
@media (max-width: 1024px) {
    #about {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .portfolio-grid,
    .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    #architecture {
        padding: 6rem 3rem;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small {
        grid-column: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    .logo {
        height: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }

    section {
        padding: 5rem 2rem;
    }

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

    .hero .tagline {
        font-size: 1.1rem;
    }

    .portfolio-grid,
    .artwork-grid {
        grid-template-columns: 1fr;
    }

    .symbols-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .symbol-item {
        padding: 0.5rem;
    }

    .symbol-item p {
        font-size: 1.1rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small {
        grid-column: span 1;
        height: 250px;
    }

    #architecture {
        padding: 4rem 2rem;
    }

    #about {
        text-align: center;
    }

    #about .section-text {
        margin: 0 auto;
    }

    .artwork-categories {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-link {
        font-size: 1.1rem;
    }

    #contact {
        padding: 6rem 2rem;
    }

    .handwritten-label {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .artwork-card img {
        height: 400px;
    }

    #artworks {
        padding: 4rem 2rem;
    }

    .petrykivka-section {
        padding: 0rem 2rem 4rem;
    }

    /* Hide cart in nav, show floating */
    nav .cart-icon {
        display: none !important;
    }

    .floating-cart {
        display: flex !important;
    }
}

.text-dark {
    color: var(--black);   
}

/* Enhanced labels on light backgrounds */
#artworks .section-label,
.petrykivka-section .section-label {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--dark);
    padding: 0.6rem 1.8rem;
}

#artworks .section-text,
.petrykivka-section .section-text {
    color: var(--gray);
}
/* Handwritten Label */
.handwritten-label {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Floating Cart (mobile) */
.floating-cart {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 1.3rem;
}

.floating-cart:hover {
    transform: scale(1.1);
    background: var(--gold-light);
}

.floating-cart .floating-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--dark);
    color: var(--gold);
    font-size: 0.6rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--gold);
}

/* Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Image Placeholder ── */
.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    width: 100%;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.04) 25%, transparent 25%),
        linear-gradient(225deg, rgba(212,175,55,0.04) 25%, transparent 25%),
        linear-gradient(315deg, rgba(212,175,55,0.04) 25%, transparent 25%),
        linear-gradient(45deg, rgba(212,175,55,0.04) 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}
.img-placeholder svg {
    opacity: 0.3;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}
.img-placeholder span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(212,175,55,0.4);
    position: relative;
    z-index: 1;
}
/* Placeholder inherits container height */
.artwork-image-container .img-placeholder,
.image-wrapper .img-placeholder { min-height: 380px; }
.gallery-main .img-placeholder { min-height: 600px; }
.gallery-thumb .img-placeholder { min-height: 100%; }
.cart-item .img-placeholder,
.order-item .img-placeholder { min-height: 100px; }
.cart-item .img-placeholder svg,
.order-item .img-placeholder svg { width: 22px; height: 22px; margin-bottom: 0.3rem; }
.cart-item .img-placeholder span,
.order-item .img-placeholder span { font-size: 0.45rem; letter-spacing: 0.15em; }
.gallery-thumb .img-placeholder { min-height: 90px; }
.gallery-thumb .img-placeholder svg { width: 18px; height: 18px; margin-bottom: 0.3rem; }
.gallery-thumb .img-placeholder span { font-size: 0.4rem; }
.product-thumb-placeholder { min-height: 90px !important; }
.related-card .image-wrapper .img-placeholder { min-height: 280px; }