.main-wrapper {
    display: flex;
    flex-flow: row wrap;
    padding: 35px 10px;
    gap: 12px;
}

.reverse-wrapper {
    flex-wrap: wrap-reverse;
}

.main-left,
.main-right {
    width: 48.5%;
    margin-inline: auto;
}


.underline-sm {
    width: 75px;
    height: 3px;
    background-color: #d28900;
    border: none;
    margin: 10px auto 15px;
}

.white-underline {
    background-color: #fff;
}

/* Global Animation */
.fade-in {
    opacity: 0;
    /* Initially hide the element */
    transition: opacity 2s ease;
    /* Smooth transition for opacity change */
    transition-delay: 3s;
}

/********* Keyframes *********/

@keyframes fadeInLeft {
    0% {
        left: -60px;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        left: 60px;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



.page-wrapper {
    max-width: 2200px;
    width: 100%;
    margin-inline: auto;
}


.h1-heading.hero-title {
	font-size: 55px;
	color: #fff;
	max-width: 25ch;
	text-shadow: 2px 2px #0000008f;
	font-weight: 600;
	-webkit-animation: fadeInEft .8s both;
	animation: fadeInLeft .8s both;
	animation-delay: 1s;
}
.products-section {
	display: flex;
}

.products-selector {
	position: relative;
	max-width: 1400px;
	margin: 0 auto 30px;
	background: #fafafa;
}

.selector-options {
	display: flex;
	position: relative;
	overflow: hidden;
	flex-flow: column;
}


.option {
	position: relative;
	z-index: 2;
	flex: 1;
	text-align: center;
	padding: 20px 0;
	cursor: pointer;
	color: #fff;
	user-select: none;
	transition: color 0.3s ease;
	background: #404042;
	border-bottom: 1px solid #f3f3f3;
}


.option:hover,
.option.active {
	color: #fff;
	background: #d28900;
}

.products-widgets {
	width: 100%;
	margin-inline: auto;
	padding: 30px 15px;
}

.widget-product-wrapper.widget-main-wrapper {
	display: flex;
    flex-flow: row wrap;
	gap: 20px;
}

.widget-main-image {
	text-align: center;
	width: 48%;
    flex: 1 420px;
}

.widget-main-image img {
	max-width: 650px;
	width: 100%;
    
}

.widget-main-content {
	width: 48%;
    flex: 1 420px;
}

@media (max-width: 520px) {
    .products-section {
	display: flex;
	flex-flow: column;
	margin-top: 20px;
}
}