  body {
            font-family: 'Poppins', sans-serif;
            background-color: #f1f5f9;
        }
        h1, h2, h3, .font-outfit {
            font-family: 'Outfit', sans-serif;
        }
        
        /* Premium Soft 3D Neumorphism & Claymorphism Shadows */
        .clay-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.35), -9px -9px 16px rgba(255, 255, 255, 0.7);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .clay-card:hover {
            transform: translateY(-8px) scale(1.015);
            box-shadow: 15px 15px 25px rgba(163, 177, 198, 0.45), -15px -15px 25px rgba(255, 255, 255, 0.9);
        }
        .neo-inset {
            box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.4), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
        }
        .dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        .dropdown-menu {
            display: none;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

         /* --- CONTAINER WORKSPACE --- */
        .details-container {
            max-width: 1250px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            position: relative;
        }

        /* --- LEFT SIDE: GALLERY & MAIN DISPLAY WITH LENS --- */
        .image-showroom-wrapper {
            display: flex;
            gap: 20px;
        }

        /* Thumbnails List */
        .thumbnails-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .thumb-item {
            width: 75px;
            height: 75px;
            border-radius: 12px;
            overflow: hidden;
            background: #ffffff;
            border: 2px solid transparent;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumb-item:hover, .thumb-item.active {
            border-color: #3b82f6;
            transform: scale(1.03);
        }

        /* Main Image Frame (Amazon Look) */
        .main-image-frame {
            flex-grow: 1;
            height: 500px;
            background: #ffffff;
            border-radius: 20px;
            position: relative;
            overflow: hidden; 
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            cursor: zoom-in;
        }

        .main-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hover Magnifier Lens Glass */
        .zoom-lens-glass {
            position: absolute;
            border: 1px solid rgba(0, 0, 0, 0.15);
            background-color: rgba(5b, 130, 246, 0.2); /* Soft Blue Tint Tint */
            width: 160px;
            height: 160px;
            border-radius: 4px;
            visibility: hidden;
            pointer-events: none; /* Mouse coordinates smoothly pass through */
        }

        /* --- DYNAMIC SIDE ZOOM POPUP (Amazon/Flipkart Exact Style) --- */
        .side-zoom-result-panel {
            position: absolute;
            top: 0;
            left: calc(55% + 20px); /* Positioned exactly over the right content container during hover */
            width: 42%;
            height: 500px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
            border: 1px solid rgba(0,0,0,0.08);
            z-index: 999;
            overflow: hidden;
            visibility: hidden;
            background-repeat: no-repeat;
        }

        /* --- RIGHT SIDE: CONTENT LAYOUT (Hidden automatically when zoom covers it) --- */
        .product-details-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .category-pill {
            align-self: flex-start;
            font-size: 0.8rem;
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.08);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #0f172a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .product-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Info Specifications Box */
        .specs-table {
            border-top: 1px solid rgba(0,0,0,0.08);
            padding-top: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 35px;
        }

        .spec-card {
            background: #ffffff;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid rgba(0,0,0,0.02);
        }

        .spec-card .title-lbl {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 2px;
        }

        .spec-card .value-lbl {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
        }

        /* Action Enquiry Trigger Buttons */
        .action-container-flex {
            display: flex;
            gap: 15px;
        }

        .btn-enquire-now {
            flex: 1;
            background: #0f172a;
            color: #ffffff;
            text-align: center;
            padding: 15px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-enquire-now:hover {
            background: #3b82f6;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
        }

        .btn-download-pdf {
            background: rgba(15, 23, 42, 0.05);
            color: #0f172a;
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-download-pdf:hover {
            background: rgba(15, 23, 42, 0.1);
        }

        /* Responsive Flow overrides */
        @media (max-width: 992px) {
            .details-container {
                grid-template-columns: 1fr;
            }
            .image-showroom-wrapper {
                flex-direction: column-reverse;
            }
            .thumbnails-stack {
                flex-direction: row;
                justify-content: center;
            }
            .side-zoom-result-panel {
                display: none !important; /* Mobile layouts me automatic overlay screen disabled, clean layout defaults */
            }
        }

        /* --- Premium Responsive Breadcrumb CSS --- */
        .breadcrumb-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.5rem;
            background: rgba(248, 250, 252, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px); /* Safari support ke liye */
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 1rem;
            margin-bottom: 2.5rem;
            font-size: 0.875rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            
            /* Mobile ke liye smooth scroll wrapper setup */
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: none; /* Firefox se scrollbar hatane ke liye */
        }

        /* Chrome, Safari aur Opera se scrollbar hatane ke liye */
        .breadcrumb-container::-webkit-scrollbar {
            display: none;
        }

        .breadcrumb-link {
            color: #64748b; /* Slate light color */
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
        }

        .breadcrumb-link:hover {
            color: #4f46e5; /* Primary indigo on hover */
        }

        .breadcrumb-sep {
            color: #cbd5e1;
            display: inline-flex;
            align-items: center;
            padding: 0 0.25rem;
        }

        .breadcrumb-current {
            color: #4f46e5; /* Active page link text */
            font-weight: 600;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        /* --- Responsive Media Queries --- */
        /* Tablets aur Choti Screens (Max-width: 768px) */
        @media (max-width: 768px) {
            .breadcrumb-container {
                padding: 0.75rem 1.2rem;
                margin-bottom: 1.75rem;
                font-size: 0.825rem;
                gap: 0.4rem;
                border-radius: 0.75rem;
            }
        }

        /* Mobile Phones (Max-width: 480px) */
        @media (max-width: 480px) {
            .breadcrumb-container {
                padding: 0.65rem 1rem;
                margin-bottom: 1.25rem;
                font-size: 0.78rem; /* Mobile par thoda chota text automatic wrap/scroll manage karne ke liye */
                background: rgba(248, 250, 252, 0.85); /* Mobile performance ke liye background thoda solid rakha hai */
            }
            
            /* Agar lamba product name ho toh mobile par maximum space limit karne ke liye */
            .breadcrumb-current {
                max-width: 150px; 
            }
        }

        .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu {
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
}