<style>
.vf-faq-page {
max-width: 800px;
margin: 0 auto;
font-family: inherit;
color: #111;
}
.vf-faq-category {
font-size: 18px;
font-weight: 700;
margin-top: 32px;
margin-bottom: 16px;
border-bottom: 2px solid #00B67A;
padding-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.vf-faq-accordion {
border-bottom: 1px solid #E5E7EB;
}
.vf-faq-btn {
width: 100%;
background: none;
border: none;
padding: 16px 0;
text-align: left;
font-size: 15px;
font-weight: 600;
color: #111;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.vf-faq-icon {
font-size: 18px;
transition: transform 0.25s ease;
}
.vf-faq-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
font-size: 14px;
line-height: 1.6;
color: #4B5563;
}
.vf-faq-accordion.active .vf-faq-content {
max-height: 300px;
padding-bottom: 16px;
}
.vf-faq-accordion.active .vf-faq-icon {
transform: rotate(45deg);
}
</style>
<div class="vf-faq-page">
<!-- Category 1 -->
<div class="vf-faq-category">Fabric Lengths & Sizing</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
How much fabric do I need for a pair of trousers?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
For standard double-width fabric (58 inches / 147 cm wide), <strong>1.30 meters</strong> is recommended and fits 99% of standard builds up to 6 feet in height. For heights over 6'1" or pleated loose cuts, <strong>1.40 meters</strong> is recommended.
</div>
</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
How much fabric is required for shirts, blazers, and suits?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
Our standard requirements for 58" width fabrics are:<br>
• <strong>Full-Sleeve Shirt:</strong> 1.60 Meters<br>
• <strong>Nehru Jacket / Waistcoat:</strong> 1.20 Meters<br>
• <strong>Blazer / Sports Coat:</strong> 2.25 Meters<br>
• <strong>2-Piece Suit (Jacket + Trouser):</strong> 3.25 Meters<br>
• <strong>3-Piece Suit (Jacket + Trouser + Vest):</strong> 4.25 Meters
</div>
</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
Are all Vestario fabrics 58 inches wide?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
Yes, unless explicitly mentioned otherwise in the product title, all our suiting and shirting fabrics are <strong>58-inch double width (147 cm)</strong>, allowing your tailor to cut garments efficiently with minimal fabric waste.
</div>
</div>
<!-- Category 2 -->
<div class="vf-faq-category">Orders & Quality</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
Is this unstitched fabric or ready-made clothing?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
All products sold on Vestario Fabrics are <strong>100% unstitched dress material lengths</strong>. This gives you the freedom to get them custom-tailored to your exact body measurements and style preference.
</div>
</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
Will the fabric color match the photos exactly?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
We photograph all fabrics in professional studio lighting to capture accurate tones and textures. Minor color variations may occur depending on your mobile or monitor display settings and brightness levels.
</div>
</div>
<!-- Category 3 -->
<div class="vf-faq-category">Shipping & Payment</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
Do you offer Cash on Delivery (COD)?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
Yes! Cash on Delivery is available across major pin codes in India. You can enter your 6-digit pin code on any product page to check COD availability and expected delivery dates.
</div>
</div>
<div class="vf-faq-accordion">
<button class="vf-faq-btn" onclick="toggleVfFaq(this)">
How long does delivery take?
<span class="vf-faq-icon">+</span>
</button>
<div class="vf-faq-content">
Orders are dispatched within 24–48 hours. Delivery takes 2 to 4 business days for metro cities and 4 to 7 business days for the rest of India.
</div>
</div>
</div>
<script>
function toggleVfFaq(btn) {
const item = btn.parentElement;
const isActive = item.classList.contains('active');
document
.querySelectorAll('.vf-faq-accordion').forEach(el => el.classList.remove('active'));
if (!isActive) item.classList.add('active');
}
</script>