/*
	Theme Name: AlFajar Tib
	Author: Haroon
	Tags: Css, wordpress, Colors of life
*/
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400..700&display=swap');
html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, nav, section { display: block; }

*,
*::after,
*::before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #000000;
	line-height: 1.5;
}

/* Headings
______________________*/
h1,h2,h3,h4,h5,h6 {
	margin: 0 0 20px;
	line-height: 1.2;
}
.banner-info h2,
h1 {
	font-size: 48px;
}
h2 {
	font-size: 42px;
}
h3 {
	font-size: 16px;
}


/* Links
______________________*/
a {
	text-decoration: none;
	color: #212121;
	transition: 0.3s all;
}

/* p, blockquote, address
______________________*/
p {
	font-size: 14px;
	margin-bottom: 20px;
}

/* Lists
______________________*/
ul,
ol{
	padding: 0;
	margin: 0;
}
li {
	list-style-type: none;
}
button {
	display: block;
	cursor: pointer;
	transition: 0.3s all;
}
img {
	display: block;
	max-width: 100%;
}

/* Root */
:root {
	--dark-color: #000000;
	--light-color: #ffffff;
}

/* Layout 
______________________*/
.container {
	width: 100%;
	max-width: 1440px;
	padding: 0 15px;
	margin: 0 auto;
}

/* Header */
.bg-layer {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 5555;
	display: none;
}

/* Theme Btn */
.wc-block-cart__submit-button,
.theme-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 32px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--light-color);
	background: var(--dark-color);
	text-transform: uppercase;
	z-index: 1;
}
.wc-block-cart__submit-button::after,
.theme-btn::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #88A322;
	transition: 0.5s;
	z-index: -1;
	transform: scaleX(0);
}
.wc-block-cart__submit-button:hover::after,
.theme-btn:hover::after {
	transform: scale(1);
}
.theme-btn span {
	display: block;
	width: 24px;
	transition: 0.3s;
}
.theme-btn:hover span {
	transform: translateX(5px);
}

/* Header */
.top-bar {
	background: #010101;
	padding: 12px 15px;
	overflow: hidden;
}
.top-info {
	font-family: "Almarai", sans-serif;
	font-size: 15px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: start;
	gap: 19px;
	color: var(--light-color);
	direction: rtl;
	white-space: nowrap;
}
.top-info span {
	font-size: 14px;
	color: #88A322;
	white-space: nowrap;
}
.top-info em {
	font-style: normal;
}
.header-wrap {
	padding: 18px 0;
	position: relative;
	border-bottom: 1px solid #CACACA;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
a.main-logo {
	display: block;
	width: 100%;
	max-width: 147px;
	margin-right: 55px;
}
.main-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.main-list a {
	font-weight: 600;
	color: var(--dark-color);
	position: relative;
	padding: 8px 0;
	text-transform: uppercase;
}
.main-list a::after {
	content: "";
	position: absolute;
	left: 1px;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #88A322;
	transition: width 0.3s;
}
.main-list li.current_page_item a::after,
.main-list a:hover::after,
.main-list a.active::after {
	width: 18px;
}
.header-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 825px;
	margin: 0 55px 0 auto;
}
.shop-links,
.social-links {
	display: flex;
	align-items: center;
	gap: 18px;
}
.search-btn,
.shop-links a,
.social-links a {
	display: block;
	min-width: 16px;
	cursor: pointer;
}
.search-form {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 100px 0 50px;
	background: var(--light-color);
	z-index: 5555;
	display: none;
}
.search-form .container {
	position: relative;
}
.close-form {
	width: 20px;
	height: 30px;
	display: block;
	cursor: pointer;
	margin: 0 0 50px auto;
}
.search-form input {
	width: 100%;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 10px 140px 10px 10px;
}
.search-form button.theme-btn {
	font-family: "Poppins", sans-serif;
	border: 0;
	position: absolute;
	right: 15px;
	bottom: 0;
	height: 51px;
}
.header-cart {
	position: relative;
}
.cart-count {
	position: absolute;
	top: -21px;
	right: -10px;
	width: 19px;
	height: 19px;
	border-radius: 100px;
	background: var(--dark-color);
	color: var(--light-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
}
.menu-btn {
	display: none;
	width: 20px;
	height: 20px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.menu-btn span {
	width: 100%;
	height: 2px;
	background: var(--dark-color);
	position: relative;
}
.menu-btn.active span {
	background: transparent;
}
.menu-btn span::after,
.menu-btn span::before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	width: 100%;
	height: 2px;
	background: var(--dark-color);
	transition: 0.3s all;
}
.menu-btn.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.menu-btn span::after {
	top: auto;
	bottom: -8px;
}
.menu-btn.active span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Banner */
.banner-wrap {
	background: radial-gradient(61.63% 390.32% at 71.84% 50.09%, #F7F7F7 0%, #D7D7D7 100%);
}
.banner-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.banner-info {
	width: 100%;
	max-width: 565px;
	padding-right: 30px;
}
.banner-info strong {
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.banner-info h2 {
	margin-bottom: 20px;
	text-transform: uppercase;
}
.banner-info p {
	font-size: 18px;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}
.banner-info .theme-btn {
	padding: 6px 30px;
}
.banner-img {
	width: 100%;
	max-width: 481px;
	transform: scale(.8);
	opacity: 0;
	transition: transform .6s ease, opacity .6s ease;
}
.banner-img img {
	width: 100%;
}
.banner-info strong,
.banner-info h2,
.banner-info p,
.banner-info .theme-btn {
	opacity: 0;
	transform: translateY(40px);
	transition: transform .6s ease, opacity .6s ease;
}
/* Active */
.owl-item.active .banner-info strong,
.owl-item.active .banner-info h2,
.owl-item.active .banner-info p,
.owl-item.active .banner-info .theme-btn{
	opacity: 1;
	transform: translateY(0);
}
.owl-item.active .banner-img {
	opacity: 1;
	transform: scale(1);
}
/* Exit */
.owl-item.active.out .banner-info strong,
.owl-item.active.out .banner-info h2,
.owl-item.active.out .banner-info p,
.owl-item.active.out .banner-info .theme-btn{
	opacity: 0;
	transform: translateY(-40px);
}
.owl-item.active.out .banner-img {
	opacity: 0;
	transform: scale(.8);
}
.owl-item.active .banner-info h2 {
	transition-delay: .15s;
}
.owl-item.active .banner-info p {
	transition-delay: .3s;
}
.owl-item.active .banner-info .theme-btn {
	transition-delay: .45s;
}
.testimonial .owl-dots,
.banner-slider .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	position: relative;
	top: -35px;
	z-index: 5;
}
.testimonial .owl-dots {
	top: 0;
	margin-top: 60px;
}
.testimonial .owl-dots .owl-dot,
.banner-slider .owl-dots .owl-dot {
	width: 12px;
	height: 12px;
	border: 2px solid #B4B4B4;
	border-radius: 100px;
}
.testimonial .owl-dots .owl-dot.active,
.banner-slider .owl-dots .owl-dot.active {
	background: #B4B4B4;
}

/* Category */
.category-wrap {
	padding: 30px 0;
}
.lead-title {
	width: 100%;
	max-width: 860px;
	margin: 0 auto 67px;
	text-align: center;
}
.lead-title strong {
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.lead-title h2 {
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 25px;
}
.lead-title p {
	letter-spacing: 0.5px;
	margin-bottom: 0;
}
.category-row {
	display: flex;
	align-items: stretch;
	justify-content: start;
	flex-wrap: wrap;
	margin: 0 -11px;
	row-gap: 22px;
}
.category-col {
	width: 25%;
	padding: 0 11px;
}
.category-box {
	display: block;
	border: 1px solid #CACACA;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	height: 100%;
}
.category-img {
	position: relative;
	padding: 31%;
}
.category-img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category-info {
	padding: 16px;
	text-align: center;
}
span.product-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 51px;
	height: 51px;
	border-radius: 100px;
	margin: -25px auto 12px;
	background: #E4E4E4;
	border: 1px solid var(--light-color);
	position: relative;
	z-index: 5;
}
span.product-icon img {
	width: 20px;
}
.category-info h3 {
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}
.category-info p {
	font-size: 12px;
	font-weight: 500;
}
.category-info a.theme-btn {
	font-size: 14px;
	padding: 8px 21px;
}
.category-slider .owl-stage {
	display: flex;
}
.category-slider .owl-stage .item {
	height: 100%;
}

/* Saving */
.saving-wrap {
	padding: 100px 0;
	background: #F4F4F4;
}
.product-row {
	display: flex;
	align-items: stretch;
	justify-content: start;
	flex-wrap: wrap;
	margin: 0 -11px;
	row-gap: 22px;
}
.product-col {
	width: 25%;
	padding: 0 11px;
}
.product-box {
	border: 1px solid #CACACA;
	position: relative;
	height: 100%;
}
.product-box .woocommerce-product-rating {
	display: flex;
	align-items: center;
	margin-bottom: 9px !important;
}
.summary.entry-summary .woocommerce-product-rating {
	display: flex;
	align-items: center;
	margin: 44px 0 0 !important;
}
.woocommerce .star-rating {
	float: none !important;
	margin: 0 !important;
}
.onsale {
	min-height: 3.236em;
	min-width: 3.236em;
	padding: .202em;
	font-size: 1em;
	font-weight: 700;
	position: absolute;
	text-align: center;
	line-height: 3.236;
	top: -.5em;
	left: -.5em;
	margin: 0;
	border-radius: 100%;
	background-color: #958e09;
	color: #fff;
	font-size: .857em;
	z-index: 9;
}
.product-box .woocommerce-LoopProduct-link,
.product-img {
	display: block;
	position: relative;
	padding-bottom: 111%;
}
.product-box .woocommerce-LoopProduct-link img,
.product-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-info {
	padding: 18px 26px 20px;
}
.woocommerce-loop-product__title,
.product-info h3 {
	font-size: 14px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px !important;
	text-align: left !important;
}
.product-info p {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
.review-stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 9px;
}
.review-stars img {
	width: 10px;
}
.review-stars span {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices .price {
	flex-direction: column;
}
.price del,
.product-info .regular-price {
	position: relative;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #A1A1A1;
	margin-bottom: 5px;
}
.product-info .regular-price::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 100%;
	height: 2px;
	background: #A1A1A1;
}
.price ins,
.product-info .sale-price {
	font-size: 14px;
	font-weight: 700 !important;
	text-transform: uppercase;
	margin-bottom: 0;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	text-decoration: none;
	color: var(--dark-color);
}
.product-info .sale-price {
	justify-content: start;
}
.product-info .price {
	font-size: 14px !important;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	color: var(--dark-color) !important;
}
.price ins span.pkr,
.product-info .sale-price span.pkr {
	margin-right: auto;
}
.product-info .sale-price em {
	display: block;
	width: 20px;
}
.woocommerce .product-info a.added_to_cart {
	display: block;
	font-size: 14px;
	padding: 0;
	margin-top: 10px;
	background: transparent;
	color: #88A322;
}
.woocommerce .product-info a.added_to_cart:hover {
	opacity: 0.8;
}
.woocommerce-pagination {
	margin-top: 30px;
}
.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	border: 0;
	width: 100% !important;
	background: transparent;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: 1px solid #cfc8d8;
	width: 30px;
	height: 30px;
}
a.page-numbers {
	width: 100%;
	height: 100%;
}
span.page-numbers.current {
	background: var(--dark-color) !important;
	color: var(--light-color) !important;
}
.product-info .theme-btn {
	width: 100%;
	font-size: 14px;
	border: 1px solid var(--dark-color);
	border-radius: 100px;
	color: var(--dark-color);
	background: transparent;
	justify-content: center;
	padding: 13px;
	margin-top: 19px;
	overflow: hidden;
}
.product-info .theme-btn:hover svg path,
.product-info .theme-btn:hover svg {
	transition: 0.3s;
}
.product-info .theme-btn:hover,
.product-info .theme-btn:hover svg path {
	color: var(--light-color);
	fill: var(--light-color);
	stroke: var(--light-color);
}
.product-info .theme-btn::after {
	background: var(--dark-color);
}
.product-info .theme-btn + .added_to_cart.wc-forward {
	display: block;
	color: #88A322;
	padding-top: 10px;
	text-align: center;
}

/* Honey */
.honey-wrap {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 22px;
}
.honey-video,
.honey-img {
	width: 50%;
	position: relative;
	padding-bottom: 49%;
}
.honey-video video,
.honey-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.honey-video video {
	object-position: top right;
}

/* Seller */
.seller-wrap {
	padding: 100px 0;
}
.center-btn {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

/* Testimonial  */
.testimonial-wrap {
	padding: 100px 0;
	background: #F4F4F4;
}
.testimonial {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.testimonial .owl-carousel {
	width: 100%;
	max-width: 905px;
	margin: 0 auto;
}
.testimonial-box {
	text-align: center;
}
.customer-img {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	overflow: hidden;
	margin: 0 auto 20px;
}
.customer-img img {
	width: 100%;
	height: 100%;
}
.testimonial-box h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 50px;
}
.testimonial-box p {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 0;
	letter-spacing: 0.5px;
}
.ti-footer {
	display: none;
}
.ti-widget.ti-goog .ti-reviews-container .ti-review-item > .ti-inner {
	padding: 0 50px !important;
}
.ti-widget.ti-goog .ti-review-item:hover {
	transform: none !important;
}
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev {
	background-color: transparent !important;
}
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next:hover,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next:focus,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev:hover,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev:focus {
	background-color: transparent !important;
	outline-color: transparent !important;
}
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next::before,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev::before {
	width: 20px !important;
	height: 20px !important;
	border-color: var(--dark-color) !important;
}
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next:hover::before,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-next:focus::before,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev:hover::before,
.ti-widget.ti-goog .ti-widget-container .ti-controls .ti-prev:focus::before {
	border-color: var(--dark-color) !important;
}

/* Footer */
.footer-top {
	padding: 71px 0;
	background: #040404;
}
.footer-top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
a.ft-logo {
	display: block;
	width: 100%;
	max-width: 163px;
}
.service-row {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px;
	row-gap: 30px;
	padding-left: 130px;
}
.service-col {
	display: flex;
	align-items: center;
	width: 33.33%;
	padding: 0 15px;
}
.service-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-info {
	padding-left: 20px;
	color: var(--light-color);
}
.service-info h3 {
	margin-bottom: 4px;
	text-transform: uppercase;
}
.service-info p {
	margin-bottom: 0;
}
.footer-bottom {
	background: #212121;
	padding: 40px 0 50px;
}
.footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 30px;
	padding-bottom: 42px;
	margin: 0 -15px 34px;
	border-bottom: 1px solid #FFFFFF33;
}
.ft-list:nth-last-child(2),
.ft-list:last-child {
	padding-top: 44px;
}
.ft-list {
	width: 25%;
	padding: 0 15px;
}
.ft-list li {
	padding-bottom: 20px;
}
.ft-list li:last-child {
	padding-bottom: 0;
}
.ft-list a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 16px;
	color: var(--light-color);
}
.ft-list a:hover {
	color: #88A322;
}
.ft-list a span {
	display: block;
	min-width: 20px;
}
.copyright {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.copyright p {
	color: #C8C8C8;
	margin-bottom: 0;
}
.copyright .social-links {
	margin: 0 66px 0 auto;
}
.back-top {
	width: 30px;
	height: 30px;
	background: #D9D9D9;
	cursor: pointer;
	position: relative;
}
.back-top::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 12px;
	transform: translate(-50%, 0) rotate(-135deg);
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 2px;
	border-color: transparent var(--dark-color) var(--dark-color) transparent;
}

/* About */
.main-wrap {
	padding: 100px 0;
}
.main h1 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 100px;
}
.about-row {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 40px;
	margin: 0 -15px;
}
.about-col {
	width: 46%;
	padding: 0 15px;
}
.about-col.ur {
	text-align: right;
}
.ur {
	font-family: "Noto Nastaliq Urdu", serif;
	line-height: 2;
}
.ur.lg {
	font-size: 21px;
}
.ur.sm {
	font-size: 17px;
}
.about-col h2 {
	font-size: 18px;
}
.about-col.ur h2 {
	margin-bottom: 0;
}
.about-col p {
	letter-spacing: 0.5px;
}
.about-col.ur p {
	letter-spacing: 0;
}
.about-col p:last-child {
	margin-bottom: 0;
}

/* Contact */
.contact-row {
	display: flex;
	align-items: center;
}
.contact-form {
	width: 50%;
	padding-right: 45px;
	border-right: 1px solid #CACACA;
}
.contact-form p {
	margin-bottom: 0;
}
.contact-form em {
	display: block;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.contact-form textarea,
.contact-form input {
	width: 100%;
	border: 1px solid #D9D9D9;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.contact-form textarea {
	height: 103px;
	margin-bottom: 18px;
}
.contact-form textarea::placeholder,
.contact-form input::placeholder {
	opacity: 1;
	color: var(--dark-color);
}
.contact-form .theme-btn {
	width: 142px;
	font-family: "Poppins", sans-serif;
	border: 0;
	border-radius: 100px;
	font-size: 14px;
	justify-content: center;
	margin-bottom: 0;
}
.contact-details {
	width: 50%;
	text-align: center;
	padding-left: 45px;
}
.contact-details h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.contact-details p {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
	margin-bottom: 40px;
}
.contact-details p:last-child {
	margin-bottom: 0;
}
.contact-details p strong {
	font-weight: 600;
	display: block;
	margin-bottom: 7px;
}
.contact-details p a:hover {
	color: #88A322;
}

/* Privacy Policy */
.main-content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.main-content h2 {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin: 40px 0 22px;
}
.main-content p {
	letter-spacing: 0.7px;
	margin-bottom: 14px;
}
.main-content ul {
	padding-left: 15px;
	margin-bottom: 14px;
}
.main-content li {
	list-style-type: disc;
	font-size: 14px;
	letter-spacing: 0.7px;
	margin-bottom: 8px;
}
.main-content em {
	display: block;
	font-size: 11px;
	letter-spacing: 0.7px;
	font-style: normal;
	margin-bottom: 15px;
}

/* Single Product */
.single-wrap {
	padding: 38px 0 86px;
}
.product-outer {
	display: flex;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
}
.product-gallery {
	width: 50%;
	position: sticky;
	top: 30px;
}
.woocommerce-product-gallery__image {
	padding-bottom: 10%;
	min-height: 400px;
}
.woocommerce div.product div.images {
	margin-bottom: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.woocommerce div.product div.images img {
	height: 100%;
	object-fit: cover;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
	width: 100%;
}
.woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	width: 16.67%;
}
.woocommerce div.product div.summary {
	width: 50%;
	padding-left: 100px;
}
.product-outer .entry-summary h1 {
	font-size: 42px;
	font-weight: 400;
	margin-bottom: 0;
}
.product-outer .entry-summary h1.urdu-title {
	font-family: "Almarai", sans-serif;
	margin-bottom: 0;
	font-size: 28px;
}
.related.products {
	padding: 100px 0;
}
.related.products h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 67px;
	text-align: center;
	text-transform: uppercase;
}
.variations select {
	display: none !important;
}
.custom-variation-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 17px;
}
.custom-variation-tabs .tab {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 25px;
	border: 2px solid #000000;
	cursor: pointer;
	border-radius: 100px;
	letter-spacing: 0.5px;
}
.custom-variation-tabs .tab.active {
	background: #000;
	color: #fff;
}
.reset_variations {
	display: none !important;
}
.woocommerce .product-outer .woocommerce-product-rating .star-rating {
	color: #FF9900;
}
.woocommerce .product-outer .woocommerce-product-rating .woocommerce-review-link {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-left: 10px;
	color: var(--dark-color);
}
.woocommerce div.product form.cart .variations {
	margin: 0;
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
	display: block;
}
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled,
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled,
.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.qty-subtitle,
.woocommerce div.product form.cart .variations label {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	color: #828282;
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
.summary.entry-summary .price {
	color: #000000 !important;
	display: block;
	margin: 48px 0 0;
	font-size: 20px !important;
	font-weight: 500;
	letter-spacing: 0.5px;
}
.summary.entry-summary .price del,
.summary.entry-summary .price ins {
	font-size: 20px;
	font-weight: 500 !important;
}
.summary.entry-summary .price del {
	font-size: 18px;
	margin-bottom: 0;
}
.woocommerce div.product form.cart,
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
	margin-top: 35px;
}
.woocommerce div.product form.cart div.quantity {
	float: none !important;
	margin: 0 0 39px 15px;
	width: 100%;
	display: flex;
	align-items: center;
}
.woocommerce .quantity .qty {
	width: 148px;
	font-size: 17px;
	font-weight: 500;
	padding: 7px 10px;
	border: 1px solid #999999;
	border-radius: 100px;
	letter-spacing: 0.5px;
	appearance: textfield;
	-moz-appearance: textfield;
}
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.woocommerce .quantity button.minus,
.woocommerce .quantity button.plus {
	font-family: "Poppins", sans-serif;
	font-size: 17px;
	font-weight: 500;
	border: 0;
	background: transparent;
	z-index: 55;
	margin-left: -35px;
}
.woocommerce .quantity button.minus {
	margin-left: 0;
	margin-right: -35px;
}
.single_add_to_cart_button,
.single-product .product .cart .merchant-buy-now-button {
	width: 48% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 17px 30px !important;
	font-family: "Poppins", sans-serif;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0.5px;
	color: var(--light-color) !important;
	background: var(--dark-color) !important;
	text-transform: uppercase;
	border-radius: 100px !important;
	transition: 0.3s;
	float: none !important;
	margin: 0 !important;
	z-index: 1;
	overflow: hidden !important;
}
.single_add_to_cart_button::after,
.single-product .product .cart .merchant-buy-now-button::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #88A322;
	transition: 0.5s;
	z-index: -1;
	transform: scaleX(0);
}
.single_add_to_cart_button:hover::after,
.single-product .product .cart .merchant-buy-now-button:hover::after {
	transform: scale(1);
}
.custom-whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	color: #ffffff;
	border-radius: 100px;
	font-size: 14px;
	font-weight:600;
	order: 3;
	background: linear-gradient(90.96deg, #25D366 -4.5%, #075E54 100%);
	margin-top: 27px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.custom-whatsapp-btn:hover{
	opacity: 0.9;
}
form.product-category-filter {
	margin-bottom: 22px;
}
form.product-category-filter select {
	min-width: 329px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid var(--dark-color);
	border-radius: 0;
	padding: 7px 30px 7px 20px;
	letter-spacing: 0.5px;
	appearance: none;
	text-transform: uppercase;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: var(--light-color) url('/wp-content/uploads/2026/07/down-arrow.svg') no-repeat right 13px center/15px;
	box-shadow: 0px 2px 4px 0px #0000001F;
}
form.product-category-filter select option {
	font-weight: 500;
	letter-spacing: 0.5px;

}

/* Review Styles */
h2.woocommerce-Reviews-title {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 27px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0;
	border-width: 0 0 1px 0;
	padding: 0 0 35px;
}
.woocommerce #reviews #comments ol.commentlist li:last-child .comment-text {
	border-bottom: 0;
}
.customer-box {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
	margin-bottom: 15px;
}
.customer-box img.avatar {
	width: 40px !important;
	float: none !important;
	position: static !important;
	border-radius: 100px;
}
.comment-text .star-rating {
	width: 5.3em;
	height: 1.2em;
	font-size: 1.5em;
	color: #FF9900;
	margin-bottom: 15px !important;
}
.comment-text .star-rating::before {
	color: #FF9900;
}
.customer-info .meta {
	margin-bottom: 0 !important;
}
.customer-info .meta strong {
	font-size: 13px;
	display: block;
	color: var(--dark-color);
	letter-spacing: 0.5px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.customer-info .meta time {
	font-size: 12px;
}
.customer-info .meta .woocommerce-review__dash {
	display: none;
}
.comment-text .description p {
	color: #212121;
	margin-bottom: 0 !important;
	letter-spacing: 0.5px;
}
#review_form span#reply-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: center;
	padding: 7px;
	background: #FF9900;
	color: var(--light-color);
	margin: 0 auto 20px;
	width: 100%;
	max-width: 220px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
}
#review_form span#reply-title:hover {
	opacity: 0.8;
}
#commentform {
	display: none;
}
.woocommerce #review_form #respond p.stars {
	display: inline-block;
	margin-bottom: 0;
}
.woocommerce #review_form #respond p.stars a {
	color: #FF9900;
}
.woocommerce #review_form #respond .comment-form-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.woocommerce #review_form #respond .comment-form-comment,
.woocommerce #review_form #respond .comment-form-rating #comment-form-rating-label {
	font-weight: 500;
}
.woocommerce #review_form #respond .form-submit input {
	background: var(--dark-color);
	color: var(--light-color);
	transition: 0.3s;
	border: 1px solid #000;
	padding: 10px 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 6px;
}
.woocommerce #review_form #respond .form-submit input:hover {
	color: var(--dark-color);
	background: transparent;
}
.single-product .product-type-variable .summary > p.price{
	display: none !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	display: none;
}
.product-description-after-cart h1,
.product-description-after-cart h3,
.product-description-after-cart h2 {
	font-size: 18px !important;
}
.product-description-after-cart h1 {
	font-weight: 700 !important;
	margin-bottom: 15px !important;
}
.product-description-after-cart p {
	letter-spacing: 0.5px;
}
.product-description-after-cart ul {
	margin: 0 0 20px 15px;
}
.product-description-after-cart ul li {
	margin-bottom: 8px;
	list-style-type: disc;
	letter-spacing: 0.5px;
}

/* Cart Toast */
.cart-toast {
	position: fixed;
	top: 30px;
	right: 30px;
	background: #2e7d32;
	color: var(--light-color);
	padding: 14px 20px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,.2);
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: .35s;
}
.cart-toast.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.added_to_cart.wc-forward {
	display: none !important;
}
.wc-block-cart__main {
	width: 100% !important;
	padding-right: 0 !important;
}
.wc-block-cart__sidebar {
	width: 100% !important;
	max-width: 350px;
	margin: 40px 0 0 auto !important;
	padding-left: 0 !important;
}
.with-empty-cart-icon.wc-block-cart__empty-cart__title + hr + h2,
.with-empty-cart-icon.wc-block-cart__empty-cart__title + hr + h2 + div.wp-block-woocommerce-product-new,
.with-empty-cart-icon.wc-block-cart__empty-cart__title + hr {
	display: none;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	margin-top: 30px;
}
.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(207, 200, 216);
	width: 30px !important;
	height: 30px !important;
	font-size: 1em;
	padding: .5em;
	min-width: 1em;
	color: #212121;
	background: #ffffff;
}
.page-numbers:hover {
	background: #e9e6ed;
	color: #816f98;
}
.page-numbers.current {
	background: #000000;
	color: #ffffff;
}

/* Checkout */
.wp-block-woocommerce-checkout {
	padding-top: 0;
}
#payment-method p {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0;
	color: green;
}

/* Media */
@media (max-width: 1199px) {
	a.main-logo {
		max-width: 140px;
	}
	.header-menu {
		margin-right: 40px;
	}
	.banner-info h2,
	h1 {
		font-size: 42px;
	}
	.product-outer .entry-summary h1,
	h2 {
		font-size: 40px;
	}
	.product-outer .entry-summary h1.urdu-title {
		font-size: 26px;
	}
	.banner-info {
		width: 50%;
	}
	.banner-info h2 {
		margin-bottom: 20px;
	}
	.banner-info p {
		margin-bottom: 30px;
	}
	.banner-img {
		width: 50%;
	}
	.banner-slider .owl-dots {
		top: -20px;
	}
	.related.products h2,
	.lead-title {
		margin-bottom: 60px;
	}
	.lead-title h2 {
		margin-bottom: 20px;
	}
	.product-info {
		padding-left: 20px;
		padding-right: 20px;
	}
	.testimonial-box p {
		font-size: 22px;
	}
	.service-row {
		padding-left: 100px;
	}
	.footer-bottom {
		padding: 35px 0;
	}
	.woocommerce div.product div.summary {
		padding-left: 40px;
	}
	.summary.entry-summary .price,
	.summary.entry-summary .woocommerce-product-rating {
		margin-top: 30px !important;
	}
}
@media (min-width: 992px) {
	.header-menu {
		display: flex !important;
	}
}
@media (max-width: 991px) {
	a.main-logo {
		margin-right: 0;
	}
	.menu-btn {
		display: flex;
	}
	.header-menu {
		display: none;
		max-width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background: var(--light-color);
		margin: 0;
		padding: 20px 15px;
		z-index: 555;
	}
	.main-list {
		flex-direction: column;
		align-items: start;
		margin-bottom: 25px;
	}
	.shop-links {
		margin: 0 30px 0 auto;
	}
	.banner-info h2,
	h1 {
		font-size: 35px;
	}
	.product-outer .entry-summary h1,
	h2 {
		font-size: 36px;
	}
	.product-outer .entry-summary h1.urdu-title {
		font-size: 24px;
	}
	.banner-info p {
		font-size: 16px;
		margin-bottom: 25px;
	}
	.related.products,
	.main-wrap,
	.testimonial-wrap,
	.seller-wrap,
	.saving-wrap {
		padding: 80px 0;
	}
	.related.products h2,
	.lead-title {
		margin-bottom: 50px;
	}
	.lead-title h2 {
		margin-bottom: 15px;
	}
	.product-col,
	.category-col {
		width: 33.33%;
	}
	.testimonial-box h3 {
		margin-bottom: 40px;
	}
	.testimonial-box p {
		font-size: 20px;
	}
	.testimonial .owl-dots {
		margin-top: 50px;
	}
	.footer-top {
		padding: 60px 0;
	}
	.service-row {
		padding-left: 50px;
	}
	a.ft-logo {
		max-width: 150px;
	}
	.ft-list {
		width: 50%;
	}
	.ft-list:nth-last-child(2),
	.ft-list:last-child {
		padding-top: 0;
		width: 100%;
	}
	.copyright .social-links {
		margin-right: 50px;
	}
	.about-col {
		width: 48%;
	}
	.main h1 {
		margin-bottom: 80px;
	}
	.contact-form {
		padding-right: 30px;
	}
	.contact-details {
		padding-left: 30px;
	}
	.contact-details p,
	.contact-details h2 {
		margin-bottom: 30px;
	}
	.woocommerce div.product div.summary {
		padding-left: 30px;
	}
	.summary.entry-summary .price,
	.summary.entry-summary .woocommerce-product-rating {
		margin-top: 20px !important;
	}
	.woocommerce div.product form.cart div.quantity {
		margin-bottom: 25px;
	}
	.woocommerce div.product form.cart,
	.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
		margin-top: 25px;
	}
	.custom-whatsapp-btn {
		margin-top: 15px;
	}
	.single-wrap {
		padding-bottom: 80px;
	}
	.single_add_to_cart_button,
	.single-product .product .cart .merchant-buy-now-button {
		padding: 15px !important;
	}
	.ti-widget.ti-goog .ti-reviews-container .ti-review-item > .ti-inner {
		padding: 0 !important;
	}
	.wc-block-components-sidebar-layout .wc-block-components-main {
		width: 55%;
		padding-right: 20px;
	}
	.wc-block-components-sidebar {
		width: 45%;
	}
}
@media (max-width: 767px) {
	.banner-info h2,
	h1 {
		font-size: 32px;
	}
	.product-outer .entry-summary h1,
	h2 {
		font-size: 32px;
	}
	.product-outer .entry-summary h1.urdu-title {
		font-size: 22px;
	}
	.banner-card {
		flex-direction: column-reverse;
	}
	.banner-img {
		width: 100%;
		max-width: 575px;
		margin: 0 auto 20px;
	}
	.banner-wrap {
		padding: 10px 0 50px;
	}
	.banner-info {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	.banner-slider .owl-dots {
		top: 0;
		margin-top: 20px;
	}
	.related.products,
	.main-wrap,
	.testimonial-wrap,
	.seller-wrap,
	.saving-wrap {
		padding: 60px 0;
	}
	.product-col,
	.category-col {
		width: 50%;
	}
	.center-btn {
		margin-top: 40px;
	}
	.honey-wrap {
		flex-direction: column;
	}
	.honey-video,
	.honey-img {
		width: 100%;
		padding-bottom: 70%;
	}
	.related.products h2,
	.lead-title {
		margin-bottom: 40px;
	}
	.customer-img {
		width: 85px;
		height: 85px;
	}
	.testimonial-box h3 {
		margin-bottom: 30px;
	}
	.testimonial-box p {
		font-size: 18px;
	}
	.testimonial .owl-dots {
		margin-top: 40px;
	}
	.footer-top {
		padding: 45px 0;
	}
	.footer-top-inner {
		flex-direction: column;
		gap: 40px;
	}
	.service-row {
		padding-left: 0;
		margin: 0 -10px;
	}
	.service-col {
		padding: 0 10px;
	}
	.service-icon {
		width: 35px;
		height: 35px;
	}
	.service-info {
		padding-left: 15px;
	}
	.service-info h3 {
		font-size: 14px;
	}
	.footer {
		padding-bottom: 35px;
		margin-bottom: 30px;
	}
	.copyright .social-links {
		margin-right: 20px;
	}
	.main h1 {
		margin-bottom: 60px;
	}
	.about-col {
		width: 100%;
	}
	.contact-row {
		display: block;
	}
	.contact-form {
		width: 100%;
		padding: 0 0 30px;
		margin-bottom: 30px;
		border-right: 0;
		border-bottom: 1px solid #CACACA;
	}
	.contact-details {
		width: 100%;
		padding-left: 0;
	}
	.product-gallery {
		width: 100%;
		position: static;
	}
	.woocommerce div.product div.summary {
		width: 100%;
		padding: 30px 0 0;
	}
	.single-wrap {
		padding-bottom: 60px;
	}
	.summary.entry-summary .price ins,
	.summary.entry-summary .price {
		font-size: 18px !important;
	}
	.summary.entry-summary .price del {
		font-size: 16px !important;
	}
	.woocommerce .product-outer .woocommerce-product-rating .woocommerce-review-link {
		font-size: 14px;
	}
}
@media (max-width: 729px) {
	.wc-block-components-sidebar-layout .wc-block-components-main {
		width: 100%;
		padding-right: 0;
	}
	.wc-block-components-sidebar {
		width: 100%;
		padding-left: 0;
	}
	.wc-block-checkout__actions.wp-block-woocommerce-checkout-actions-block .css-0.e19lxcc00 {
		display: none;
	}
}
@media (max-width: 575px) {
	.top-info {
		font-size: 14px;
	}
	a.main-logo {
		max-width: 120px;
	}
	.shop-links {
		gap: 15px;
		margin-right: 25px;
	}
	.banner-info h2,
	h1 {
		font-size: 30px;
	}
	.product-outer .entry-summary h1,
	h2 {
		font-size: 28px;
	}
	.product-outer .entry-summary h1.urdu-title {
		font-size: 20px;
	}
	.banner-info strong {
		margin-bottom: 10px;
	}
	.banner-info h2 {
		margin-bottom: 15px;
	}
	.banner-info p {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.theme-btn {
		padding: 10px 25px;
		font-size: 14px;
	}
	.product-info .theme-btn {
		padding: 10px;
	}
	.related.products,
	.main-wrap,
	.testimonial-wrap,
	.seller-wrap,
	.saving-wrap {
		padding: 40px 0;
	}
	.related.products h2,
	.lead-title {
		margin-bottom: 30px;
	}
	.product-row {
		row-gap: 12px;
		margin: 0 -6px;
	}
	.product-col,
	.category-col {
		width: 50%;
		padding: 0 6px;
	}
	.product-info {
		padding: 15px 10px;
	}
	.product-info .theme-btn {
		font-size: 12px;
		padding: 7px;
		margin-top: 10px;
	}
	.product-info .theme-btn svg {
		display: none;
	}
	.center-btn {
		margin-top: 30px;
	}
	.customer-img {
		width: 70px;
		height: 70px;
		margin-bottom: 15px;
	}
	.testimonial-box h3 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.testimonial-box p {
		font-size: 14px;
	}
	.testimonial .owl-dots {
		margin-top: 30px;
	}
	.footer-top {
		padding: 35px 0;
	}
	.service-col {
		width: 50%;
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	.footer {
		padding-bottom: 30px;
		margin-bottom: 25px;
	}
	.ft-list {
		width: 100%;
	}
	.footer-bottom {
		padding-bottom: 20px;
	}
	.copyright {
		flex-direction: column-reverse;
	}
	.copyright p {
		width: 100%;
		text-align: center;
	}
	.copyright .social-links {
		margin: 0;
	}
	.back-top {
		display: none;
	}
	.main h1 {
		margin-bottom: 40px;
		font-size: 28px;
	}
	.contact-form textarea,
	.contact-form input {
		padding: 12px 14px;
		margin-bottom: 12px;
	}
	.contact-form textarea {
		margin-bottom: 15px;
	}
	.contact-details h2 {
		font-size: 18px;
	}
	.contact-details p {
		font-size: 14px;
	}
	.contact-details p,
	.contact-details h2 {
		margin-bottom: 25px;
	}
	.main-content h2 {
		margin: 30px 0 15px;
	}
	.woocommerce div.product form.cart div.quantity,
	.woocommerce .product-outer .woocommerce-product-rating {
		margin-bottom: 15px;
	}
	.woocommerce div.product form.cart,
	.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled,
	.summary.entry-summary .price,
	.summary.entry-summary .woocommerce-product-rating {
		margin-top: 15px !important;
	}
	.single-wrap {
		padding-bottom: 40px;
	}
	.ur.lg {
		font-size: 18px;
	}
	.ur.sm {
		font-size: 15px;
	}
	.honey-video,
	.honey-img {
		padding-bottom: 80%;
	}
}