/* Custom Dark Mode / Premium Look */
body,
html {
    background-color: #000 !important;
    height: 100%;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}

#wrap {
    background-color: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff !important;
}

hr {
    border-color: #d4a373;
    /* Gold accent */
}

header {
    display: inline-block;
    position: absolute;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    /* margin-top: 0px; */
}

/* Custom Hero Slider with Ken Burns Effect */
.home-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000 !important;
    /* Force black background */
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Slower, smoother transition */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ken Burns Animation Start State */
    transform: scale(1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 3;
    /* Highest priority */
    /* Ken Burns Animation */
    animation: kenBurns 10s infinite alternate;
}

.hero-slide.last-active {
    opacity: 1;
    /* Keep visible */
    z-index: 2;
    /* Behind active but above others */
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 90%);
    /* Darker edges */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero-content h5 {
    color: #d4a373;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-content .btn-lg {
    background: #d4a373;
    color: #000;
    border-radius: 0;
    padding: 18px 50px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 1px solid #d4a373;
}

.hero-content .btn-lg:hover {
    background: transparent;
    color: #d4a373;
}

/* Slider Controls */
.editorial-text .lead {
    font-family: 'Playfair Display', serif;
}

.brand-image-container img {
    border: 1px solid #222;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #d4a373;
    color: #000;
    border-color: #d4a373;
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #d4a373;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.header .sticky {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.ownmenu li a {
    color: #fff !important;
}

.ownmenu ul.dropdown {
    background-color: #222;
    border: 1px solid #333;
}

.ownmenu ul.dropdown li a {
    color: #ccc !important;
    border-bottom: 1px solid #333;
}

.ownmenu ul.dropdown li a:hover {
    background-color: #333;
    color: #d4a373 !important;
}

/* Sections */
.who-we-are {
    background-color: #1a1a1a;
}

.services {
    background-color: #1a1a1a;
}

.portfolio {
    background-color: #121212;
}

.product-card {
    background: #1a1a1a;
    padding: 0;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-card .product-img {
    background: #252525;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.product-card .product-img img {
    max-width: 90%;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-details {
    padding: 25px 20px;
    background: #1a1a1a;
    border-top: 2px solid #333;
    transition: border-color 0.3s;
}

.product-card:hover .product-details {
    border-color: #d4a373;
}

.product-details h5 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-details .price {
    color: #d4a373;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.btn-dark {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 11px;
    width: 100%;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: #d4a373;
    color: #000;
    border-color: #d4a373;
}

/* Premium Dark Golden Background */
.portfolio-premium {
    background: #000;
    /* Deep Rich Bronze/Gold Gradient */
    background: radial-gradient(circle at center, #2e261f 0%, #1a1612 40%, #000000 100%);
    position: relative;
}

/* Texture overlap removed for cleaner gradient */
.portfolio-premium::before {
    display: none;
}

/* Fix for existing template green overlay */
.portfolio-in:before {
    background: none !important;
    display: none !important;
}

/* Footer */
footer {
    background-color: #000;
    color: #888;
}

/* Collection Grid */
.collection-item {
    position: relative;
    overflow: hidden;
    height: 600px;
    /* Tall impressive layout */
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.overlay-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.collection-item:hover .overlay-col {
    opacity: 1;
}

.overlay-col h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay-col p {
    color: #ffd700;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.collection-item:hover .overlay-col h3,
.collection-item:hover .overlay-col p {
    transform: translateY(0);
}

.btn-line {
    margin-top: 30px;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    letter-spacing: 2px;
    font-size: 12px;
    background: transparent;
    transition: all 0.3s;
}

.btn-line:hover {
    background: #d4a373;
    border-color: #d4a373;
    color: #000;
}

/* Craftsmanship Section */
.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.craft-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #111;
    /* Fallback */
    background: radial-gradient(at right center, #1a1a1a 0%, #000 100%);
}

.padding-80 {
    padding: 80px;
}

@media (max-width: 768px) {
    .padding-80 {
        padding: 40px;
    }

    .craft-img {
        height: 300px !important;
    }
}

footer span {
    color: #d4a373;
}

.social-icons a {
    color: #fff;
    border: 1px solid #444;
}

.social-icons a:hover {
    background: #d4a373;
    color: #000;
    border-color: #d4a373;
}

/* Masonry Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
    border: 1px solid #222;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
    object-position: top;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-item:hover {
    border-color: #d4a373;
    z-index: 2;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Grid Layout */
.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Tall Left */
.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Top Middle */
.item-3 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Wide Top Right */
.item-4 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* Wide Bottom Middle */
.item-5 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Square Bottom Right */

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* Futuristic About Page Styles (Global) */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat !important;
    /* Force no repeat */
    background-size: cover !important;
    /* Force cover */
    position: relative;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #000;
    /* Fallback */
}

/* Fix for Header Overlap on the first section - Exact 400px */
.parallax-section.hero-header {
    padding-top: 150px !important;
    /* Adjusted for centering in 400px */
    padding-bottom: 0px;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    /* Strict enforcement */
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 163, 115, 0.2);
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    border-color: #d4a373;
    transform: translateY(-10px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #d4a373, transparent);
    opacity: 0.5;
}

.future-heading {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.future-heading::after {
    content: none !important;
    /* Remove background text */
    display: none;
}

.glow-text {
    text-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
}

.stat-item h2 {
    font-size: 80px;
    color: transparent;
    -webkit-text-stroke: 1px #d4a373;
    opacity: 0.8;
    margin: 0;
    font-weight: 900;
}

/* Architecture Section */
.arch-section {
    background-color: #000;
    /* Fallback against white */
    /* Using root-relative path to be safe */
    background-image: url('../images/bg/about_arch_wireframe.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.arch-content-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-left: 3px solid #d4a373;
    padding: 60px;
    max-width: 600px;
    margin-left: auto;
    /* Push to right */
    position: relative;
    z-index: 2;
}

/* Materiality Broken Grid */
.material-section {
    background: #000;
    /* Ensure deep black */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.broken-grid {
    display: flex;
    align-items: center;
    position: relative;
}

.main-img-wrap {
    width: 60%;
    position: relative;
    z-index: 1;
}

.main-img-wrap img {
    width: 100%;
    filter: grayscale(20%) contrast(1.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Ensure overlap content is readable - Safer Layout */
.overlap-content {
    width: 45%;
    margin-left: 0;
    /* Removed overlap to fix collision */
    position: relative;
    z-index: 3;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid #333;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.floating-texture {
    position: absolute;
    bottom: -30px;
    right: 10px;
    /* Moved inside slightly but clear of text */
    width: 150px;
    /* Smaller */
    height: 150px;
    border: 2px solid #d4a373;
    background-color: #000;
    background-image: url('../images/bg/about_mat_texture.png');
    background-size: cover;
    background-position: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.3);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* =========================================
   IMMERSIVE PDP STYLES (Futuristic)
   ========================================= */

/* Main Wrapper: Removes default container padding constraints */
.pdp-split-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    background: #000;
    position: relative;
    overflow-x: hidden;
    padding-top: 80px;
    /* Account for fixed header */
}

/* =========================================
   WHITE IMAGE HANDLING (Cards & PDP)
   ========================================= */

/* LISTING CARDS (Futuristic Permanent & Hover) */
.product-card {
    background: #0b0b0b;
    /* Slightly lighter than pure black for depth */
    border: 1px solid rgba(212, 163, 115, 0.2);
    /* Subtle Gold Border always visible */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Ambient Depth */
}

/* CYBER CORNERS (Static Deco) */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid #d4a373;
    border-left: 2px solid #d4a373;
    z-index: 5;
    transition: all 0.4s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #d4a373;
    border-right: 2px solid #d4a373;
    z-index: 5;
    transition: all 0.4s ease;
}

/* Hover: Corners expand */
.product-card:hover::before,
.product-card:hover::after {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(212, 163, 115, 0.5);
    /* Glow effect */
}

/* Gold Glow & Border on Hover */
.product-card:hover {
    border-color: #d4a373;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(212, 163, 115, 0.3);
}

/* The Image Area */
.product-card .product-img {
    background: #fff;
    padding: 30px;
    /* Increased padding */
    position: relative;
    overflow: hidden;
    height: 320px;
    /* Taller */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Futuristic Scan Effect */
.product-card .product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.4), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-img::after {
    animation: scanGold 0.8s ease;
}

@keyframes scanGold {
    0% {
        left: -150%;
    }

    100% {
        left: 200%;
    }
}

.product-card .product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: contrast(1.1);
    /* Make image pop */
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-card .product-details {
    padding: 25px;
    background: #111;
    position: relative;
    z-index: 2;
    border-top: 1px solid #333;
    transition: background 0.3s ease;
    text-align: center;
}

/* Futuristic Text Styling */
.product-card h5 a {
    font-family: 'Montserrat', sans-serif;
    /* Tech font */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #fff;
    transition: color 0.3s;
}

.product-card:hover h5 a {
    color: #d4a373;
    text-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

.product-card .price {
    font-family: 'Playfair Display', serif;
    /* Luxury Contrast */
    color: #d4a373;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    display: block;
}

/* Neon Button Style */
.btn-line.btn-small {
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 10px 20px;
    border-radius: 0;
    /* Boxy tech look */
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-line.btn-small:hover {
    border-color: #d4a373;
    color: #d4a373;
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.2);
    background: rgba(212, 163, 115, 0.05);
}



/* IMMERSIVE PDP (White BG Adaptation) */
.pdp-visual-stage {
    width: 50%;
    position: relative;
    height: 80vh;
    background: radial-gradient(circle at center, #ffffff 0%, #fffbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(212, 163, 115, 0.3);
    box-shadow: inset -20px 0 50px rgba(0, 0, 0, 0.05);
    margin-left: 20px;
}

/* Right Side: Details Stage */
.pdp-details-stage {
    width: 40%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    min-height: 80vh;
}

.pdp-visual-stage::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 5s infinite alternate;
}

.immersive-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 50px;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    /* Softer shadow */
    transition: opacity 0.5s ease;
    /* transition transform handled by JS/zooming class */
    opacity: 0;
    animation: simpleFadeIn 1s forwards 0.5s;
    cursor: crosshair;
    /* Indicates inspection */
    transform-origin: center center;
    mix-blend-mode: multiply;
}

@keyframes simpleFadeIn {
    to {
        opacity: 1;
    }
}

/* Helps blend white edges */


/* When JS is zooming, disable smooth transition for instant tracking */
.immersive-img.zooming {
    transition: none;
}

/* LIGHTBOX STYLES */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    /* Toggled via JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
}

.lightbox-content .carousel,
.lightbox-content .carousel-inner,
.lightbox-content .item {
    height: 100%;
}

.lightbox-content .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #d4a373;
}

.carousel-control {
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
}

.carousel-control .glyphicon {
    font-size: 30px;
}

/* 
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
*/
}

/* Glass Control Panel */
.glass-control-panel {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-control-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shine 6s infinite;
}

/* Typography */
.pdp-cat-tag {
    color: #d4a373;
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.pdp-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.pdp-price {
    font-size: 32px;
    color: #d4a373;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(212, 163, 115, 0.3);
}

/* Thumbnails floating in the visual stage or details */
.variant-stripe {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.variant-thumb {
    width: 100px;
    /* Increased from 70px */
    border: 2px solid #333;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.variant-thumb img {
    width: 100%;
    height: 80px;
    /* Fixed height */
    object-fit: contain;
    background: #fff;
    padding: 5px;
}

.variant-name {
    font-size: 11px;
    color: #888;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: color 0.3s;
}

.variant-thumb:hover,
.variant-thumb.active {
    border-color: #d4a373;
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
    transform: translateY(-3px);
}

.variant-thumb:hover .variant-name,
.variant-thumb.active .variant-name {
    color: #d4a373;
}

/* Neon Button */
.btn-neon {
    background: transparent;
    border: 1px solid #d4a373;
    color: #d4a373;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #d4a373;
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-neon:hover::before {
    width: 100%;
}

.btn-neon:hover {
    color: #000;
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.6);
}

/* Description Text */
.pdp-desc {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Key Features Section */
.key-features-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(212, 163, 115, 0.05);
    border-left: 3px solid #d4a373;
    position: relative;
}

.features-title {
    color: #d4a373;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d4a373;
    font-size: 10px;
    top: 4px;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 992px) {
    .pdp-split-wrapper {
        flex-direction: column;
        padding-top: 60px;
        /* Reduced top padding */
    }

    .pdp-visual-stage,
    .pdp-details-stage {
        width: 100%;
        height: auto;
        border-right: none;
        /* Remove divider on mobile */
    }

    .pdp-visual-stage {
        height: 400px;
        /* More compact on mobile */
        padding: 40px;
        background: radial-gradient(circle at center, #ffffff 0%, #e0e0e0 100%);
        /* Ensure gradient persists */
    }

    .pdp-details-stage {
        padding: 40px 30px;
        /* Generous padding */
        min-height: 500px;
        /* Ensure content fits */
    }

    .glass-control-panel {
        padding: 30px;
        max-width: 100%;
        /* Use full width */
    }

    .pdp-title {
        font-size: 32px;
        /* Smaller title for mobile */
    }

    .immersive-img {
        padding: 10px;
        /* Less internal padding for image to be bigger */
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .broken-grid {
        flex-direction: column;
    }

    .main-img-wrap {
        width: 100%;
        margin-bottom: 30px;
    }

    .overlap-content {
        width: 100%;
        margin-left: 0;
    }

    .floating-texture {
        display: none;
    }

    .arch-content-box {
        margin: 0 auto;
    }
}

/* =========================================
   CONTACT PAGE STYLING
   ========================================= */

/* Banner Section */
.sub-banner {
    background-color: #000;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(20, 20, 20, 0.8) 0%, #000 100%);
    z-index: 1;
}

.sub-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    color: #d4a373;
    /* Gold */
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
    margin: 0;
    display: inline-block;
    padding-bottom: 20px;
}

.sub-banner h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a373;
    margin: 20px auto 0;
}

/* Contact Form Section */
.contact-us {
    background-color: #050505;
    position: relative;
}

.contact-us h4 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
    border-left: 3px solid #d4a373;
    padding-left: 20px;
}

.contact-us p {
    color: #888;
    font-size: 16px;
    line-height: 1.8;
}

/* Form Elements */
.contact-us .form-control {
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0;
    height: 50px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-us textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.contact-us .form-control:focus {
    background-color: #1a1a1a;
    border-color: #d4a373;
    /* Gold focus */
    box-shadow: 0 0 10px rgba(212, 163, 115, 0.2);
    outline: none;
}

.contact-us .form-control::placeholder {
    color: #555;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Contact Info (Right Side) */
.contact-info li {
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.contact-info li .media-left {
    padding-right: 20px;
}

.contact-info li i {
    font-size: 24px;
    color: #d4a373;
}

.contact-info li p {
    margin: 0;
    color: #aaa;
}

.contact-info li p strong {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

/* Submit Button Override */
.contact-us .btn-dark {
    background: transparent;
    border: 1px solid #d4a373;
    color: #d4a373;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    font-size: 14px;
    transition: all 0.4s ease;
}

.contact-us .btn-dark:hover {
    background: #d4a373;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
}

/* =========================================
   HEADER HEIGHT ADJUSTMENT (User Request)
   ========================================= */
header .sticky {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.is-sticky .sticky {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

/* Ensure logo doesn't shift awkwardly */
header .logo {
    margin-top: 5px !important;
}