
        /* General Styling */
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
            color: #333;
        }

        .product-details {
            max-width: 1200px;
            margin: auto;
        }

        /* Accordion Styling */
        .accordion-header {
            background-color: black;
            color: white;
            cursor: pointer;
            padding: 14px 16px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 20px;
            font-weight: bold;
            transition: 0.3s;
        }
        
        .accordion-header.active, .accordion-header:hover {
            background-color: #EC498B;
            color: #333;
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: white;
        }

        /* Style for the + / - icon */
        .accordion-icon {
            float: right;
            font-size: 24px;
            line-height: 1; /* Aligns the symbol better */
        }

        /* Default state: show '+' */
        .accordion-header .accordion-icon::before {
            content: '+';
        }

        /* Active state: show '-' */
        .accordion-header.active .accordion-icon::before {
            content: '−'; /* Using a proper minus sign character */
        }

        /* Product Images Section for stitched images */
        .stitched-images img {
            max-width: 100%;
            height: auto;
            display: block; 
        }

        /* Product Size Section */
        .size-chart {
            width: 100%;
            border-collapse: collapse;
        }

        .size-chart th, .size-chart td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
        }

        .size-chart th {
            font-size: 18px;
            font-weight: bold;
            background-color: #f2f2f2;
        }

        /* FAQs Section */
        .faq-item {
            margin-bottom: 20px;
            padding: 6px 12px;
        }

        .faq-item h4 {
            margin-bottom: 5px;
        }
        
        #faqs h3 {
            padding: 0 12px;
        }

    