@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&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');

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/FuturaBT-BoldItalic.woff2') format('woff2'),
        url('../fonts/FuturaBT-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/FuturaBT-Bold.woff2') format('woff2'),
        url('../fonts/FuturaBT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/FuturaBT-MediumItalic.woff2') format('woff2'),
        url('../fonts/FuturaBT-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/FuturaBT-Medium.woff2') format('woff2'),
        url('../fonts/FuturaBT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
	font-family: 'Futura Md BT';
	overflow-x: hidden;
    font-weight: 500;
    font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura Md BT';
    font-weight: bold;
}
a, a:hover {
    text-decoration: none;
}
header {
    padding: 10px 38px;
    background: #fff;
    position: sticky;
    overflow: hidden;
    top: 0;
    z-index: 99;
}
header.inner {
    border-bottom: 1px solid #f4f5f6;
}
.logo {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}
.logo img {
    max-height: 80px;
}
.toggle_btn, .search_btn {
    color: #000;
}
header a+a {
    margin-left: 48px;
}
.btn {
    display: inline-flex;
    padding: 0 40px;
    height: 60px;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
}
.btn.white {
    display: inline-flex;
    padding: 0 40px;
    height: 60px;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
}
section {
    padding: 100px 0;
}
.heading {
    font-size: 32px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}
.heading:last-child {
    margin: 0;
}
.subheading {
    font-size: 16px;
    color: #757575;
    margin: 0;
}
.banner_section {
    display: block;
    padding: 0 50px;
}
.video_wrapper {
    display: flex;
    aspect-ratio: 16/7;
}
.video_wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
    object-fit: cover;
}
.collection_section {
    display: block;
    padding-left: 50px;
    padding-right: 50px;
}
.collection figure {
    margin: 0;
    position: relative;
}
.collection figure img {
    width: 100%;
    aspect-ratio: 0.75/1;
    object-fit: cover;
}
.collection figcaption {
    padding: 10px 50px 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 20%,rgba(0,0,0,0.6) 100%);
    transform: translateY(100%);
    transition: all ease-in 0.5s;
}
.collection figure:hover figcaption {
    transform: translateX(0);
}
.collection figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.collection figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.collection_full_section {
    display: block;
}
.jeans figure {
    margin: 0;
    position: relative;
}
.jeans figure img {
    width: 100%;
    aspect-ratio: 0.75/1;
    object-fit: cover;
}
.jeans figcaption {
    padding: 10px 50px 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 20%,rgba(0,0,0,0.6) 100%);
}
.jeans figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.jeans figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.button_area {
    display: flex;
    align-items: center;
    gap: 30px;
}
.slider_btn {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 10px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 30px;
}
.grid_section {
    display: block;
    padding: 0 50px;
}
.grid_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    gap: 10px 10px;
    grid-auto-flow: row;
    grid-template-areas:
        "top_left top_left top_right"
        "bottom_left bottom_right bottom_right";
    width: 100%;
    height: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.grid_container div {
    display: flex;
    height: 100%;
}
.grid_container div:nth-child(1) {
    grid-area: top_left;
}
.grid_container div:nth-child(3) {
    grid-area: bottom_right;
}
.grid_container .image_box img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 9/16; */
    object-fit: cover;
}
.grid_container .image_box2 img, .grid_container .image_box3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.grid_container .image_box2 {
    grid-area: top_right;
}
.grid_container .image_box3 {
    grid-area: bottom_left;
}
.black_box {
    background: #1E1E1E;
    flex-direction: column;
    padding: 60px;
    grid-area: top_right;
}
.black_box figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.black_box figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.gray_box {
    background: #D9D9D9;
    flex-direction: column;
    padding: 60px;
    grid-area: bottom_left;
}
.gray_box figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #1E1E1E;
}
.gray_box figcaption p {
    color: #1E1E1E;
    font-size: 16px;
    margin: 0;
}
.black_box figure img {
    width: 100px;
    height: 100px;
    object-fit: scale-down;
    filter: brightness(0) invert(1);
}
.gray_box figure img {
    width: 100px;
    height: 100px;
    object-fit: scale-down;
    filter: brightness(0);
}
.black_grid_section {
    display: block;
    padding-left: 50px;
    padding-right: 50px;
    background: #FAF9F6;
    margin-top: 60px;
}
.black_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 300px 300px;
    grid-template-rows: 300px 300px;
    gap: 30px 30px;
    grid-auto-flow: row;
    grid-template-areas:
        "top_left top_left top_center top_right"
        "top_left top_left top_center bottom_right";
    width: 100%;
    height: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;   
}
.video_block {
    display: flex;
    background: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.video_block:nth-child(1) {
    grid-area: top_left;
}
.video_block:nth-child(2) {
    grid-area: top_center;
}
.video_block:nth-child(3) {
    grid-area: top_right;
}
.video_block:nth-child(4) {
    grid-area: bottom_right;
}
.video_block video {
    width: 100%;
    height: 100%;
    object-fit: cover;   
}
.video_block figcaption {
    width: 100%;
    padding: 10px 50px 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 20%,rgba(0,0,0,1) 100%);
    transform: translateY(100%);
    transition: all ease-in 0.5s;
}
.video_block:hover figcaption {
    transform: translateX(0);
}
.video_block figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.video_block figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.join_section {
    display: block;
    padding-left: 50px;
    padding-right: 50px;
}
.join_section img {
    width: 100%;
    height: auto;
}
.insta_section {
    display: block;
    padding-left: 50px;
    padding-right: 50px;
}
.insta_section img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}
footer {
    background: #000;
    padding-top: 50px;
}
footer h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}
footer h4 {
    font-size: 24px;
    color: #828282;
    margin-bottom: 40px;
}
footer p {
    color: #828282;
}
footer p:last-child {
    margin: 0;
}
.footer_menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer_menu li {
    display: block;
}
.footer_menu a {
    display: block;
    color: #828282;
}
.footer_image {
    max-width: 100%;
    margin-top: 100px;
}
.collection_card {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}
.collection_card img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75 / 1;
    object-fit: cover;
}
.collection_card figcaption {
    padding: 10px 50px 50px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 20%,rgba(0,0,0,0.6) 100%);
    transform: translateY(100%);
    transition: all ease-in 0.5s;
}
.collection_card:hover figcaption {
    transform: translateX(0);
}
.collection_card figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.collection_card figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.details_section {
    display: block;
    padding: 0 50px;
    padding-bottom: 100px;
}
.details_section figure {
    margin: 0;
}
.breadcrumb_wrapper {
    padding: 16px 0;
}
.breadcrumb_wrapper .breadcrumb {
    font-size: 12px;
    margin: 0;
}
.details_image {
    max-width: 100%;
    width: 100%;
}
.review_area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}
.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
.review_text {
    line-height: 1;
}
.like_card figure {
    margin-bottom: 10px;
}
.like_card img {
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.like_card h5 {
    font-size: 16px;
}
.details_section p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    text-align: justify;
}
.attibute {
    margin: 0 0 5px;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.attibute li {
    display: block;
}
.attibute li span {
    display: inline-flex;
    padding: 0;
    width: 52px;
    height: 40px;
    border: 1px solid #eee;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
}
.product_content {
    position: sticky;
    top: 120px;
}
.side_bar {
	position: fixed;
	width: 390px;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #f5f5f5;
	gap: 24px;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 55px 35px 40px;
	transform: translatex(-100%);
	transition: all ease-in-out 0.5s;
}
.side_bar.active {
	transform: translatex(0);
}
.side_bar_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.side_bar_logo img {
	max-height: 30px;
}
.side_bar_body {
	overflow: auto;
    margin: auto 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.side_bar_footer {
	padding-top: 24px;
	border-top: 1px solid #d7d7d7;
}
.side_bar_footer a {
	color: #000;
	text-decoration: none;
}
.side_bar_footer h5 {
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 10px;
}
.side_bar_footer span {
	font-size: 15px;
	line-height: 1.6;
}
.side_bar_footer span a {
	color: #797C7F;
}
.product_list {
	margin: auto 0;
	padding: 0;
	list-style-type: none;
}
.product_list li {
	display: block;
	border-bottom: 1px solid #d7d7d7;
}
.product_list li a {
	display: flex;
	gap: 24px;
	padding: 14px 0;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	align-items: center;
}
.product_list li:first-child {
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    padding-bottom: 10px;
}
.product_list li:last-child {
    border: none;
}
.product_list + .product_list {
    margin-top: 30px;
}
.btn_close {
	display: flex;
	background: #fff;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	transition: all ease-in-out 0.5s;
}
.btn_close:hover {
	transform: rotate(180deg);
}
.collection_block {
    aspect-ratio: 0.75 / 1;
    display: flex;
    background: #1E1E1E;
    flex-direction: column;
    padding: 60px;
}
.collection .collection_block figure img {
    max-width: 100px;
    object-fit: scale-down;
}
.collection .collection_block figcaption {
    transform: none;
}
.collection .collection_block figcaption h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.collection .collection_block figcaption p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.collection .collection_prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.collection .collection_next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9;
}
.vision_card {
    display: flex;
    padding: 30px;
    height: 100%;
    background: #f0f0f0;
    gap: 30px;
    align-items: center;
}
.vision_card figure {
    width: 124px;
    flex: 0 0 auto;
}
.vision_card figure img {
    max-width: 100%;
}
.why_section figure {
    margin: 0;
}
.why_section figure img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.trade_logo {
    max-width: 100px;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
}


/* Masonry Grid */
    .gallery-grid {
      max-width: 100%;
      margin: 0 auto;
    }

    .grid-sizer,
    .grid-item {
      width: 25%; /* 4 columns */
    }

    @media (max-width: 992px) {
      .grid-sizer,
      .grid-item {
        width: 33.33%; /* 3 columns */
      }
    }

    @media (max-width: 768px) {
      .grid-sizer,
      .grid-item {
        width: 50%; /* 2 columns */
        padding: 6px;
      }
    }

    @media (max-width: 480px) {
      .grid-sizer,
      .grid-item {
        width: 50%; /* 1 column */
        padding: 3px;
      }
    }

    .grid-item {
      overflow: hidden;
      padding: 10px;
    }

    .grid-item img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background: #fff;
        transition: transform 0.3s ease;
    }

    .grid-item:hover img {
      transform: scale(1.03);
    }

    .download_button {
        display: inline-flex;
        padding: 10px 24px;
        border-radius: 6px;
        background: #000;
        color: #fff;
    }
    .button_block {
        display: block;
        position: sticky;
        bottom: 30px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    #welcomeModal img {
        max-width: 100%;
    }
    .newsletter {
        background: #FAF9F6;
    }
    .newsletter_block {
        display: flex;
        border-bottom: 1px solid #ccc;
    }
    .emailbox {
        flex: 1;
        border: none;
        padding: 16px 0;
        background: transparent;
    }
    .emailbox:focus {
        outline: none;
    }
    .email_btn {
        background: transparent;
        border: none;
        padding: 16px 0;
    }
    .testimonial_section {
        display: block;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 0;
    }
    .testimonial_card {
        display: block;
        padding: 30px 40px;
        background: #f0f0f0;
    }
    .rating {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .rating i {
        background: #00bb74;
        padding: 5px;
        color: #fff;
    }
    .testimonial_card p {
        min-height: 100px;
    }
    .testimonial_card h5 {
        margin-top: 40px;
    }
    .enquiry_block {
        display: block;
        padding: 20px 30px;
        background: #0F0F0F08;
        border: 1px solid #eee;
        margin-bottom: 16px;
    }
    .enquiry_block h5 {
        margin-bottom: 16px;
    }
    .enquiry_block .emailbox {
        flex: 1;
        border: none;
        padding: 16px;
        background: #fff;
        border: 1px solid #eee;
        width: 100%;
        margin-bottom: 16px;
    }
    .enquiry_block .emailbox:focus {
        outline: none;
    }
    .enquiry_block .email_btn {
        background: #000;
        color: #fff;
        border: none;
        padding: 16px;
        width: 100%;
    }
    .whatsapp_icon {
        position: fixed;
        display: block;
        bottom: 20px;
        left: auto;
        right: 20px;
        width: 40px;
        height: 40px;
        z-index: 99;
    }
    .whatsapp_icon img {
        max-width: 100%;
    }
    
    .search_container {
        width: 330px;
        height: auto;
        position: fixed;
        top: 35px;
        left: auto;
        right: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        transform: translateX(140%);
        transition: all ease-in 0.5s;
        background: #f7f7f7;
        border: 1px solid #eee;
        opacity: 0;
    }
    .searchbox {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        line-height: 24px;
        color: #000;
        background: transparent;
        border: none;
        border-bottom: 1px solid #fff;
        border-radius: 0;
    }
    .searchbox:focus {
        outline: none;
    }
    .search_container.active {
        transform: translateX(0%);   
        opacity: 1;
    }
    .global-search-item {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .global-search-item figure {
        margin: 0;
    }
    .global-search-item figure img {
        max-width: 60px;
    }