/* 1. Global Background & Texture */
body {
    background-color: #0d0d0d !important;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    font-family: var(--font-body), sans-serif;
}

.page-noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 2. Global Golden Flashlight */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(
        circle 450px at var(--mouse-x, 0px) var(--mouse-y, 0px), 
        rgba(255, 191, 0, 0.12) 0%,   
        rgba(184, 134, 11, 0.05) 40%, 
        transparent 80%
    );
}
body:hover::before {
    opacity: 1;
}

/* 3. Hero Section */
.product-hero {
    position: relative;
    padding: 220px 0 150px;
    background-image: url(''); /* BACKGROUND PLACEHOLDER: Dark moody cargo ship or spice farm */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid rgba(255, 191, 0, 0.15);
}
.product-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 13, 13, 0.75); /* Vignette Gelap */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.eyebrow-gold {
    color: #FFBF00;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(255, 191, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 191, 0, 0.2);
}
.product-hero h1 {
    color: #ffffff !important;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}
.product-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* 4. Catalog Grid & Cards */
.catalog-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}
.product-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #161616;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

/* Shine Sweep Effect */
.product-gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 191, 0, 0.15), 
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.8s;
    pointer-events: none;
    z-index: 10;
}
.product-gallery-item:hover::after {
    left: 150%;
}
.product-gallery-item:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 191, 0, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 191, 0, 0.08);
}
.product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s ease;
}
.product-gallery-item:hover .product-img {
    transform: scale(1.05);
}
.product-img-wrapper {
    overflow: hidden;
    position: relative;
}
.product-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.meta-tags {
    margin-bottom: 20px;
}
.meta-badge {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.meta-badge.highlight {
    background: rgba(255, 191, 0, 0.1);
    color: #FFBF00;
    border-color: rgba(255, 191, 0, 0.3);
}
.product-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.75);
}
.product-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.product-spec-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}
.product-spec-list li i {
    color: #FFBF00;
    margin-top: 3px;
    margin-right: 12px;
    font-size: 16px;
}
.spec-highlight {
    background: rgba(17, 15, 15, 0.5);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FFBF00;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-top: auto;
    line-height: 1.6;
}

/* 5. Global Trader's Insights */
.insights-section {
    padding: 100px 0;
    background: #110F0F;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}
.insight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 25px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}
.insight-card:hover {
    background: rgba(255, 191, 0, 0.03);
    border-color: rgba(255, 191, 0, 0.25);
    transform: translateX(10px);
}
.insight-card h4 {
    color: #FFBF00 !important;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.insight-card h4 i {
    margin-right: 15px;
    font-size: 26px;
    opacity: 0.9;
}
.insight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 16px;
}

/* 6. Call to Action Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}
.cta-box {
    background: linear-gradient(145deg, #161616 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 191, 0, 0.2);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 50px rgba(255, 191, 0, 0.05);
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 191, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    color: #ffffff !important;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}
.btn-gold {
    background: #FFBF00 !important;
    color: #110F0F !important;
    font-weight: 700 !important;
    border: none !important;
}
.btn-gold .ot-blob {
    background: #e6ac00 !important;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .product-hero h1 { font-size: 40px; }
    .product-hero { padding: 150px 0 80px; }
    .cta-box { padding: 50px 20px; }
    .cta-box h2 { font-size: 32px; }
}