\n \nKuala Lumpur-based Dayang Fatimah \"Tom\" Abang Saufi, the chief designer and managing director of fashion company Ethnicite Sdn. Bhd., is one of the pioneers of Islamic fashion. She first drew headlines when she launched her business in 1985, featuring women's clothing in bright colorful designs. \n \n\"Moslem women, particularly professional women, want to look chic while maintaining their Moslem identity, a trend evident not just in the Middle East, but also in Western countries, including the United States, which has a growing Moslem population,\" Abang Saufi said in an interview with Apparel. \n \n\"After attending a one-year course at the London School of Fashion, I further honed my skills in fashion designing. But when I started out, there was a recession in many countries of the world and stores were not doing well because of high prices and low demand,\" she recalls. \n \nFortunately for Abang Saufi, the recession was on its way out, and she also had the good fortune to design the wedding gown for a royal wedding in Brunei. \"The Brunei wedding catapulted me into fame. Since then I have never had to look back,\" she said. \n \nAlthough she has buyers in the West, her main market is in Asia, particularly the Middle East, which is ripe with potential buyers for her Islamic fashion apparel. Initially, Abang Saufi was unsure how to break into the Middle Eastern markets - where consumer taste is considered \"bland\" - with her array of bright colors, but increased global travel among this group has familiarized Middle Easterners with \"good labels such as Roberto Cavalli which are quite colorful,\" she says, helping her to gain a foothold. \n \nIslamic fashion, an enigma to many in the world of haute couture, conjures up images of garments conforming to strict religious needs, but Asian designers such as Abang Saufi have learned to create collections that are fashionable while adhering to religious dictates. \n \nAbang Saufi said that she discerned a \"growing interest\" in Islamic fashion at her fashion exhibition in Paris last year and says that she considers Moslem women in the United States to be\"more trendy\" than those in other countries. She has also cast her eye on markets with sizable Moslim populations such as France, the U.K. and China. \n \nWhile Abang Saufi is influenced by Malaysian colors and designs - she avoids using zippers and buttons - her style is a curious blend of East meets West. Some of her products are designed in such a way that they can be tied by hand or threaded through gleaming shell buckles. \n \nShe defines the core elements of Islamic fashion as elegance with modest. \"It does not have to be boring. Women in Islamic countries are adding color to their traditional black clothing\" she says, adding that each country in the Gulf has its own style, and that some, such as Egypt, Iran, Syria and Jordan are more liberal in their fashion styles than others. \n \nWhile her turnover of nearly US$1 million is modest by Western standards, it is quite impressive for a developing niche market. \n \nManik Mehta is a free-lance business writer specializing in textiles and apparel, fashion, globalization and emerging markets. \n"}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
While many fashion designers around the world are looking for ways and means to survive in these difficult economic times as even high-end consumers tighten their purse strings and look for bargains, Malaysia's fashion designers have discovered the niche market of Islamic fashion to beat the dry economic season.
Kuala Lumpur-based Dayang Fatimah "Tom" Abang Saufi, the chief designer and managing director of fashion company Ethnicite Sdn. Bhd., is one of the pioneers of Islamic fashion. She first drew headlines when she launched her business in 1985, featuring women's clothing in bright colorful designs.
"Moslem women, particularly professional women, want to look chic while maintaining their Moslem identity, a trend evident not just in the Middle East, but also in Western countries, including the United States, which has a growing Moslem population," Abang Saufi said in an interview with Apparel.
"After attending a one-year course at the London School of Fashion, I further honed my skills in fashion designing. But when I started out, there was a recession in many countries of the world and stores were not doing well because of high prices and low demand," she recalls.
Fortunately for Abang Saufi, the recession was on its way out, and she also had the good fortune to design the wedding gown for a royal wedding in Brunei. "The Brunei wedding catapulted me into fame. Since then I have never had to look back," she said.
Although she has buyers in the West, her main market is in Asia, particularly the Middle East, which is ripe with potential buyers for her Islamic fashion apparel. Initially, Abang Saufi was unsure how to break into the Middle Eastern markets - where consumer taste is considered "bland" - with her array of bright colors, but increased global travel among this group has familiarized Middle Easterners with "good labels such as Roberto Cavalli which are quite colorful," she says, helping her to gain a foothold.
Islamic fashion, an enigma to many in the world of haute couture, conjures up images of garments conforming to strict religious needs, but Asian designers such as Abang Saufi have learned to create collections that are fashionable while adhering to religious dictates.
Abang Saufi said that she discerned a "growing interest" in Islamic fashion at her fashion exhibition in Paris last year and says that she considers Moslem women in the United States to be"more trendy" than those in other countries. She has also cast her eye on markets with sizable Moslim populations such as France, the U.K. and China.
While Abang Saufi is influenced by Malaysian colors and designs - she avoids using zippers and buttons - her style is a curious blend of East meets West. Some of her products are designed in such a way that they can be tied by hand or threaded through gleaming shell buckles.
She defines the core elements of Islamic fashion as elegance with modest. "It does not have to be boring. Women in Islamic countries are adding color to their traditional black clothing" she says, adding that each country in the Gulf has its own style, and that some, such as Egypt, Iran, Syria and Jordan are more liberal in their fashion styles than others.
While her turnover of nearly US$1 million is modest by Western standards, it is quite impressive for a developing niche market.
Manik Mehta is a free-lance business writer specializing in textiles and apparel, fashion, globalization and emerging markets.