                  .product-container {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            grid-template-columns: 0.55fr 1fr;
            gap: 40px;
            /* background: white; */
            /* padding: 30px; */
            border-radius: 8px;
            margin-bottom: 30px;
        }

        /* .product-images {
            position: sticky;
            top: 0;
        } */

        .main-image {
            /* width: 580px; */
            height: 450px;
            position: sticky;
            top: 100px;
            object-fit: cover;
            border-radius: 6px;
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .thumbnail:hover {
            border-color: #2c5aa0;
        }

        .product-info h1 {
            font-size: 36px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .product-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            margin-top: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .meta-item {
            font-size: 14px;
        }

        .meta-label {
            color: #666;
            font-weight: 500;
        }

        .meta-value {
           color: #333;
    font-weight: 600;
    line-height: 26px;
        }

        .product-description {
            margin-bottom: 25px;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .fx-career-single-content {
            background: #f8f9fa;
            padding: 50px 35px 50px 35px;
            border-radius: 6px;
            margin-bottom: 25px;
        }

        .fx-career-single-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #000;
            font-weight: 600;
        }

        .features-list {
            list-style: none;
        }

        /* .features-list li {
            padding: 8px 0;
            font-size: 14px;
            padding-left: 25px;
            position: relative;
        }

        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #021F45;
            font-weight: bold;
        } */

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .btn-primary {
            background: #2c5aa0;
            color: white;
        }

        .btn-primary:hover {
            background: #1e3f70;
        }

        .btn-secondary {
            background: white;
            color: #2c5aa0;
            border: 2px solid #2c5aa0;
        }

        .btn-secondary:hover {
            background: #2c5aa0;
            color: white;
        }

        .specifications-section {
            /* padding: 30px; */
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .specifications-section h2 {
            font-size: 20px;
            font-weight: 700;
            /* margin-bottom: 50px; */
            margin-bottom: 20px;
            color: #1a1a1a;
            border-bottom: 1px solid #dee2e6;
            /* padding-bottom: 10px; */
            padding-bottom: 15px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table tr {
            border-bottom: 1px solid #eee;
        }
/* 
        .spec-table tr:last-child {
            border-bottom: none;
        } */

        .spec-table td {
            padding: 15px 10px;
        }

        .spec-table td:first-child {
               font-weight: 600;
    font-size: 14px;

            color: #555;
            width: 35%;
        }

        .spec-table td:last-child {
            color: #333 !important;
    font-size: 14px;
        }

        .materials-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .materials-section h2 {
            font-size: 24px;
            margin-bottom: 25px;
            color: #1a1a1a;
            border-bottom: 3px solid #2c5aa0;
            padding-bottom: 10px;
        }

        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .material-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #2c5aa0;
        }

        .material-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .material-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 0 !important;
                padding: 0px !important;
            }
.specifications-section {
    padding: 0px !important;
    border-radius: 8px;
    margin-bottom: 30px;
}
            .action-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
        .prd-details-heading{
            font-size: 30px;
            margin-bottom: 30px;
        }
             
             
             
             .intro-text {
            color: #666;
            font-size: 15px;
            margin-bottom: 30px;
            /* margin-top: 30px; */
            margin-top: 15px;
            line-height: 26px;
            padding: 15px;
            background-color: #f9f9f9;
            border-left: 4px solid #2c5aa0;
        }

        .product-title {
            font-size: 20px !important;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 25px;
            /* text-transform: uppercase;
            letter-spacing: 0.5px; */
        }

        .properties-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .properties-table thead {
            background-color: #e8e8e8;
        }

        .properties-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #333;
            font-size: 14px;
            /* border-bottom: 1px solid #ccc; */
            border: 1px solid #e0e0e0;
        }

        .properties-table td {
            padding: 15px;
            color: #555;
            font-size: 14px;
            /* border-bottom: 1px solid #e0e0e0; */
            border: 1px solid #e0e0e0;
        }

        .properties-table tbody tr:nth-child(odd) {
            background-color: #f9f9f9;
        }

        .properties-table tbody tr:nth-child(even) {
            background-color: #efefef;
        }

        .properties-table tbody tr:hover {
            background-color: #e3f2fd;
            transition: background-color 0.3s ease;
        }

        @media (max-width: 768px) {
          
            .product-title {
                font-size: 16px !important;
                margin-top: 20px;
            }

            .properties-table {
                font-size: 12px;
            }

            .properties-table th,
            .properties-table td {
                padding: 10px 8px;
            }

            .intro-text {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .properties-table th,
            .properties-table td {
                padding: 8px 5px;
                font-size: 11px;
            }
        }

        /* Weight Table Styles */
        .weight-wrapper {
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .weight-section-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .weight-data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .weight-data-table thead {
            background-color: #e8e8e8;
        }

        .weight-data-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #333;
            font-size: 14px;
            border-bottom: 2px solid #ccc;
        }

        .weight-data-table td {
            padding: 15px;
            color: #555;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }

        .weight-subheader {
            background-color: #f5f5f5 !important;
            font-weight: 600;
        }

        .weight-subheader td {
            color: #666;
            font-size: 13px;
        }

        .weight-data-table tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }

        .weight-data-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .weight-data-table tbody tr:hover {
            background-color: #e3f2fd;
            transition: background-color 0.3s ease;
        }

        @media (max-width: 768px) {
            .weight-wrapper {
                padding: 0px;
                margin-top: 20px;
            }

         .weight-section-title {
        font-size: 19px;
        margin-bottom: 0 !important;
    }

            .weight-data-table {
                font-size: 12px;
            }

            .weight-data-table th,
            .weight-data-table td {
                padding: 10px 8px;
            }
        }

        @media (max-width: 480px) {
            .weight-data-table th,
            .weight-data-table td {
                padding: 8px 5px;
                font-size: 11px;
            }
        }