/*
	Custom RTL Styles for WeGolden Theme
	Tailored for Arabic (ar) and Persian (ir) locales
*/

body {
    direction: rtl;
    unicode-bidi: embed;
    text-align: right;
}

/* Typography and alignment overrides */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, span, a, div {
    text-align: right;
}

/* Float reversals */
.float-left, .alignleft, .nav-left {
    float: right !important;
}
.float-right, .alignright, .nav-right {
    float: left !important;
}

/* Text alignment helpers */
.text-left {
    text-align: right !important;
}
.text-right {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}

/* Flexbox alignments */
.flex, [style*="display: flex"], [style*="display:flex"] {
    /* Flex row automatically reverses under RTL, but swap margins if needed */
}

/* Margins & Paddings swap */
margin-right {
    margin-left: inherit;
}

/* Target primary navigation and headers */
.header-nav, .nav, .menu, .menu-item {
    padding-left: 0;
    margin-left: 0;
}

.nav > li {
    float: right;
}

.nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
}

/* Header Switcher and icons alignment */
.header-icons, .header-right {
    margin-right: auto !important;
    margin-left: 0 !important;
    flex-direction: row-reverse;
}

.header-left {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Dropdown Menu alignment */
.nav-dropdown, .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    text-align: right;
}

.nav-dropdown-right {
    left: 0 !important;
    right: auto !important;
}

/* Left/Right Icon Swap */
.icon-angle-right:before {
    content: "\e900"; /* Left arrow or similar icon depending on font icon pack */
}
.icon-angle-left:before {
    content: "\e901";
}

/* List items bullet alignment */
ul, ol {
    margin-right: 1.5em;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

li {
    margin-right: 0;
}

/* Inputs and Forms */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea, select {
    text-align: right;
    direction: rtl;
}

/* Footer widget spacing */
.footer-section, .widget-col {
    text-align: right;
}

/* Language switcher flag icon spacing */
.lang-switcher img, .lang-flag {
    margin-left: 8px !important;
    margin-right: 0 !important;
}

.lang-switcher .arrow-down, .lang-arrow {
    margin-right: 4px !important;
    margin-left: 0 !important;
}

/* Buttons and icons styling */
.btn i, button i, a i {
    margin-left: 5px;
    margin-right: 0;
}

/* Breadcrumbs RTL support */
.breadcrumbs, .woocommerce-breadcrumb {
    text-align: right;
}
.breadcrumbs a, .woocommerce-breadcrumb a {
    display: inline-block;
}
.breadcrumbs .divider, .woocommerce-breadcrumb .divider {
    transform: rotate(180deg);
    display: inline-block;
}

/* Specific elements for WeGolden */
.aboutus_ceo_info {
    text-align: right !important;
}

.whyus_ic1, .whyus_ic2, .whyus_ic3, .whyus_ic4 {
    margin-left: 15px !important;
    margin-right: 0 !important;
}

/* Columns / Grid support */
.col, .columns, [class*="col-"] {
    float: right;
}
