/* Compiled Ghost Layer CSS - Ecommerce Evolution */

/* Widened Container for High-Density Layout */
@media (min-width: 1200px) {
    .container {
        max-width: 90% !important;
        width: 1440px !important;
    }
}

/* Ecommerce Product Card Refinement */
.featured-item-box {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.featured-item-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.featured-item-box img {
    transition: transform 0.6s ease;
}

.featured-item-box:hover img {
    transform: scale(1.05);
}

/* Typography & Retail Polish */
.featured-item-box .item-name {
    font-weight: 700 !important;
    color: #2D3748 !important;
    font-size: 1.1rem !important;
}

.featured-item-box .item-price {
    color: #FF4900 !important;
    font-weight: 800 !important;
}

/* Layout Tightening */
.header,
.footer {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FF4900;
}

/* GHOST LAYER SPECIALIZED UTILITIES */

.ghost-glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

.ghost-text-gradient {
    background: linear-gradient(135deg, #FF4900 0%, #ff8100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghost-border-glow {
    position: relative;
    border: 1px solid rgba(255, 73, 0, 0.1) !important;
}

.ghost-border-glow:hover {
    border-color: rgba(255, 73, 0, 0.4) !important;
    box-shadow: 0 0 15px rgba(255, 73, 0, 0.1) !important;
}

/* Transposition Highlight */
[data-transposition-key] {
    position: relative;
}

[data-transposition-debug="true"] [data-transposition-key]::after {
    content: attr(data-transposition-key);
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 8px;
    background: #000;
    color: #fff;
    padding: 1px 3px;
    border-radius: 3px;
    z-index: 1000;
    opacity: 0.5;
}