/* =================================================
 * GI SPECIFICATIONS TABLE – (Matches newdesing.png)
 * ================================================= */

 .gi-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    border: none; /* Removes outer table border */
}

.gi-spec-table tr {
    border-bottom: 1px solid #e5e5e5; /* Thin horizontal line only */
}

.gi-spec-table tr:last-child {
    border-bottom: none; /* Clean look for the last row */
}

.gi-spec-table th,
.gi-spec-table td {
    padding: 14px 10px; /* Increased padding for better readability */
    text-align: left;
    border: none; /* Ensure no cell-specific borders */
    background: transparent !important; /* Removes zebra striping */
}

.gi-spec-table th {
    width: 40%;
    font-weight: 600; /* Semi-bold label */
    color: #111;
    font-size: 14px;
}

.gi-spec-table td {
    color: #555; /* Slightly softer color for the values */
    font-size: 14px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .gi-spec-table th {
        width: 50%;
    }
}

/* =================================================
 * GI FAQ – Theme Matched (Black / Gold / Premium)
 * ================================================= */

 .gi-faq-wrap {
	margin-top: 24px;
}

/* FAQ Item */
.gi-faq-item {
	background: #f7f7f7;
	border-radius: 6px;
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	transition: border-color 0.2s ease;
}

.gi-faq-item.is-open {
	border-color: #c9a24d; /* gold */
}

/* Question Button */
.gi-faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #111;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.gi-faq-question:hover {
	background: #f0f0f0;
}

/* Icon */
.gi-faq-icon {
	font-size: 18px;
	font-weight: bold;
	color: #c9a24d; /* gold */
	margin-left: 12px;
	line-height: 1;
}

/* Answer */
.gi-faq-answer {
	display: none;
	padding: 0 20px 18px 20px;
	color: #333;
	font-size: 14px;
	line-height: 1.7;
	background: #ffffff;
}

.gi-faq-item.is-open .gi-faq-answer {
	display: block;
}

/* First FAQ open look */
.gi-faq-item.is-open .gi-faq-question {
	background: #ffffff;
	color: #000;
}

/* Links inside answer */
.gi-faq-answer a {
	color: #c9a24d;
	text-decoration: underline;
}

.gi-faq-answer a:hover {
	color: #000;
}

/* Mobile tweaks */
@media (max-width: 768px) {
	.gi-faq-question {
		font-size: 14px;
		padding: 14px 16px;
	}

	.gi-faq-answer {
		padding: 0 16px 16px 16px;
	}
}

/* FAQ question layout */
.gi-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 18px;
	background: #fff;
	border: none;
	cursor: pointer;
	text-align: left;
}

/* Left section */
.gi-faq-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Document icon (matches reference) */
.gi-faq-doc-icon {
	width: 18px;
	height: 18px;
	display: inline-block;
	background-color: #c9a24d; /* theme gold */
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm8 1.5V8h4.5L14 3.5ZM7 11h10v1.5H7V11Zm0 4h10v1.5H7V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm8 1.5V8h4.5L14 3.5ZM7 11h10v1.5H7V11Zm0 4h10v1.5H7V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Question text */
.gi-faq-question-text {
	font-size: 15px;
	font-weight: 500;
	color: #111;
}

/* Toggle icon (+ / −) */
.gi-faq-icon {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	transition: color 0.2s ease;
}

.gi-faq-item.is-open .gi-faq-icon {
	color: #c9a24d;
}
