* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body.deactive {
    overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input,
textarea,
select {
    outline: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 20px) calc(1em + 10px);
    background-repeat: no-repeat;
}

/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --main_color: #d5dfbd;
    --poppins_regular: "Poppins-Regular";
    --mangoGrotesque-medium: "MangoGrotesque-Medium";
    --mangoGrotesque-regular: "MangoGrotesque-Regular";
    --mangoGrotesque-bold: "MangoGrotesque-Bold";
    --clashDisplay-medium: "ClashDisplay-Medium";
    --clashDisplay-Regular: "ClashDisplay-Regular";
    --clashDisplay-Semibold: "ClashDisplay-Semibold";
}

/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "MangoGrotesque-Medium";
    src: url("../webfonts/MangoGrotesque-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "MangoGrotesque-Regular";
    src: url("../webfonts/MangoGrotesque-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "MangoGrotesque-Bold";
    src: url("../webfonts/MangoGrotesque-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "ClashDisplay-Medium";
    src: url("../webfonts/ClashDisplay-Medium.otf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "ClashDisplay-Regular";
    src: url("../webfonts/ClashDisplay-Regular.otf");
    font-weight: regular;
    font-style: normal;
}


@font-face {
    font-family: "ClashDisplay-Semibold";
    src: url("../webfonts/ClashDisplay-Semibold.otf");
    font-weight: regular;
    font-style: normal;
}



/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}

/* SCROLL-CSS */

.index_banner {
    width: 100%;
    height: 100vh;
    background: url("../images/index-bg.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}



.banner_container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    /* z-index: 1; */
}

.banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 60px;
    z-index: 999;
    will-change: transform;
}


.banner_overlay img {
    position: absolute;
}




.banner_subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--mangoGrotesque-regular), sans-serif;
    font-size: 45px;
    line-height: 0.95;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.banner_subtitle span {
    display: block;
}

.banner_title_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: auto 0; */
}

.banner_title {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 340px;
    line-height: 0.8;
    text-align: center;
    text-transform: none;
    color: var(--white);
    margin: 0;
    font-weight: normal;
    letter-spacing: -0.01em;
}

.banner_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    z-index: 9999;
}

.banner_stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar_group {
    display: flex;
    align-items: center;
}

.avatar_item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--black);
    overflow: hidden;
    margin-right: -18px;
    background: #111;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.avatar_item:nth-child(1) {
    z-index: 4;
}

.avatar_item:nth-child(2) {
    z-index: 3;
}

.avatar_item:nth-child(3) {
    z-index: 2;
}

.avatar_item:hover {
    transform: translateY(-6px);
    z-index: 5 !important;
}

.avatar_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar_plus {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #121212;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--poppins_regular), sans-serif;
    font-weight: 300;
    margin-left: 5px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar_plus:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: scale(1.05);
}

.stats_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.stats_num {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 34px;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 0.03em;
}

.stats_txt {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.2;
    font-weight: 300;
}

.banner_cta {
    display: flex;
    align-items: center;
}

.btn_explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 30px;
    color: var(--white);
    text-decoration: none;
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    line-height: 1;
}

.btn_explore:hover {
    color: var(--white);
    transform: translateX(3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn_explore .arrow {
    font-size: 24px;
}

@keyframes float-scale {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.15);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.categories_slider {
    width: 100%;
    background: #ffc107;
    overflow: hidden;
    position: relative;
}

.slider_wrapper {
    width: 100%;
    overflow: hidden;
}

.slider_track {
    display: flex;
    gap: 100px;
    padding: 40px 0px 30px 0px;
    animation: slide-infinite 20s linear infinite;
    width: fit-content;
}

.slider_item {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 120px;
    color: var(--black);
    white-space: nowrap;
    /* letter-spacing: -0.02em; */
    flex-shrink: 0;
    line-height: 1;
}

.about_section {
    width: 100%;
    background: var(--white);
    padding: 100px 0;
}

.about_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* max-width: 900px; */
    /* margin: 0 auto; */
}

.about_title {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 200px;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1;
}

.about_text {
    font-family: var(--mangoGrotesque-regular), sans-serif;
    font-size: 75px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    font-weight: 300;
    max-width: 1200px;
    margin: 0 auto 40px;
    display: block;
}

.text_highlight {
    display: none;
}

.about_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 40px;
    color: var(--black);
    text-decoration: none;
    border: 1px solid var(--black);
    border-radius: 4px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.about_link:hover {
    background: var(--black);
    color: var(--white);
    transform: translateX(4px);
}

.about_link .arrow {
    font-size: 16px;
}

.artist_info_section {
    width: 100%;
    background: var(--white);
    padding: 65px 60px;
}

.artist_info_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--black);
    border-radius: 20px;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    will-change: transform;
    transform-origin: center center;
    z-index: 1;
}

.artist_label {
    font-family: var(--clashDisplay-medium), sans-serif;
    font-size: 235px;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.artist_label_left {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-right: 20px;
}

.artist_label_right {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg);
    margin-left: 20px;
}

.artist_image_wrapper {
    flex: 1;
    height: 750px;
    overflow: hidden;
    width: 100%;
}

.artist_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.story_container {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #82027E;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
    will-change: transform;
    transform-origin: center center;
}

#anim_box_one {
    z-index: 2;
}

#anim_box_two {
    z-index: 3;
}

#anim_box_three {
    z-index: 4;
}

.story_bg_one {
    background: #45B1C9;
}

.story_bg_two {
    background: #FFC40F;
}

.story_content {
    flex: 0 0 50%;
    padding: 50px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story_text {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.7;
    text-align: justify;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.3px;
}

.story_image_wrapper {
    flex: 0 0 50%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 0 20px 20px 0;
}

.story_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.header_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.menu_btn {
    font-size: 17px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 12px 24px;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgb(255 254 254 / 54%);
}

/* The Moving Purple Shadow */
.menu_btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Pure Purple Glow */
    background: conic-gradient(
        from 0deg, 
        transparent 0%, 
        transparent 70%, 
        #82027E 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
    animation: rotate-purple-shadow 3s linear infinite;
    filter: blur(25px); /* Makes it look like a soft shadow/light */
}

/* The Inner Mask to keep text readable */
.menu_btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    /* background: #000000; */
    border-radius: 14px;
    z-index: -1;
    transition: background 0.4s ease;
}

/* Hover State */
.menu_btn:hover {
    color: var(--main_color); /* Text turns beige on hover */
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(130, 2, 126, 0.5); /* Purple border */
    box-shadow: 0 10px 30px rgba(130, 2, 126, 0.4); /* Static purple shadow */
}

.menu_btn:hover::before {
    opacity: 1; /* Reveals the moving purple shadow */
}

.menu_btn:hover::after {
    background: rgba(10, 10, 10, 0.95);
}

/* Active/Click State */
.menu_btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Animation for the moving purple shadow */
@keyframes rotate-purple-shadow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.menu_lines span {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
}

.float_img_1 {
    top: 6%;
    left: 16%;
}

.float_img_2 {
    top: 5%;
    right: 17%;
}

.float_img_3 {
    top: 17%;
    left: 50%;
    filter: blur(12px);
}

.float_img_4 {
    top: 29%;
    left: 16%;
}

.float_img_5 {
    top: 30%;
    right: 13%;
}

.float_img_6 {
    top: 39%;
    left: 50%;
    filter: blur(12px);
}

.float_img_7 {
    top: 53%;
    left: 16%;
}

.float_img_8 {
    top: 53%;
    right: 6%;
}

.float_img_9 {
    top: 63%;
    left: 44%;
    filter: blur(12px);
}

/* STATS SECTION START */
.stats_section {
    width: 100%;
    background-color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.stats_item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats_item:hover {
    transform: translateY(-8px);
}

.stats_number {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 180px;
    color: var(--black);
    line-height: 0.8;
    display: flex;
    align-items: baseline;
    font-weight: normal;
    transition: transform 0.4s ease;
}

.stats_item:hover .stats_number {
    transform: scale(1.03);
}

.stats_details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats_tag {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999999;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stats_label {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 48px;
    color: var(--black);
    line-height: 0.9;
    text-transform: none;
}

.stats_divider {
    width: 1px;
    height: 120px;
    background-color: #e0e0e0;
    margin: 0 40px;
    flex-shrink: 0;
}

/* STATS SECTION END */

/* RECENT WORK SECTION START */
.recent_work_section {
    width: 100%;
    /* height: 100vh; */
    background-color: var(--white);
    padding: 60px 0 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.recent_work_title {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 150px;
    color: var(--black);
    text-align: center;
    line-height: 1;
    font-weight: normal;
    text-transform: none;
    margin: 0;
    flex-shrink: 0;
}

.recent_work_slider_wrap {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: visible;
}

.recent_work_slider {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 8%;
    will-change: transform;
    flex-shrink: 0;
}

.slide_item {
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.slide_item:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.slide_item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* .slide_item_1 { height: 430px; }
.slide_item_2 { height: 470px; }
.slide_item_3 { height: 400px; }
.slide_item_4 { height: 340px; }
.slide_item_5 { height: 400px; }
.slide_item_6 { height: 470px; } */

.recent_work_bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.recent_work_progress_wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

.progress_year {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 55px;
    color: var(--black);
    line-height: 1;
}

.progress_bar_container {
    width: 500px;
    height: 5px;
    background-color: #e8e8e8;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress_bar_fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #82027E;
    transform: scaleX(0);
    transform-origin: left center;
    border-radius: 3px;
}

.progress_hint {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999999;
    letter-spacing: 0.08em;
    text-transform: none;
    margin: 0;
}

/* RECENT WORK SECTION END */

/* REVIEWS SECTION START */
.reviews_section {
    width: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 8;
    padding: 100px 0 150px 0;
}

.reviews_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8% 50px 8%;
    flex-shrink: 0;
}

.reviews_title {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 150px;
    color: var(--black);
    line-height: 0.8;
    font-weight: normal;
    text-transform: none;
    margin: 0;
}

.reviews_badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #e2e2e7;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.reviews_badge_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff3b30;
    flex-shrink: 0;
}

.reviews_badge_info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.reviews_badge_rating {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.reviews_badge_stars {
    color: #ff3b30;
    font-size: 11px;
    letter-spacing: 1px;
}

.reviews_badge_sub {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #8e8e93;
    letter-spacing: -0.01em;
}

.reviews_slider_wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews_slider {
    display: flex;
    width: max-content;
}

.reviews_track {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    animation: reviews-marquee 35s linear infinite;
    will-change: transform;
}

.reviews_slider:hover .reviews_track {
    animation-play-state: paused;
}

@keyframes reviews-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.review_card {
    flex-shrink: 0;
    width: 440px;
    background: #f5f5f7;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
}

.review_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.review_card_top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review_name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.02em;
}

.review_role {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #8e8e93;
    margin: 0;
}

.review_rating_wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    line-height: 0.8;
}

.review_rating_num {
    font-family: var(--mangoGrotesque-medium), sans-serif;
    font-size: 110px;
    color: var(--black);
    line-height: 0.8;
    font-weight: normal;
}

.review_stars {
    color: #ffcc00;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review_text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #1d1d1f;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* REVIEWS SECTION END */

/* INSTAGRAM SECTION START */
.instagram_section {
    width: 100%;
    background-color: var(--white);
    padding: 20px 0 30px 0;
    position: relative;
    z-index: 7;
}

.instagram_slider_wrap {
    width: 100%;
    position: relative;
}

.instagram_slider {
    display: flex;
    width: max-content;
}

.instagram_track {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    animation: instagram-marquee 40s linear infinite;
    will-change: transform;
}

.instagram_slider:hover .instagram_track {
    animation-play-state: paused;
}

@keyframes instagram-marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.instagram_item {
    display: block;
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
}

.instagram_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram_overlay i {
    color: var(--white);
    font-size: 36px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover States */
.instagram_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.instagram_item:hover img {
    transform: scale(1.05);
}

.instagram_item:hover .instagram_overlay {
    background: rgba(0, 0, 0, 0.35);
    width: 110px;
    height: 110px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.instagram_item:hover .instagram_overlay i {
    transform: scale(1.15);
}

/* INSTAGRAM SECTION END */

/* FOOTER SECTION START */
.footer_wrapper {
    width: 100%;
    padding: 20px 20px 20px 20px;
    background: transparent;
}

.footer_inner {
    width: 100%;
    background: url("../images/footer-bg.png") center center/cover no-repeat;
    border-radius: 28px;
    padding: 30px 60px 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}


.footer_inner>* {
    position: relative;
    z-index: 1;
}

/* Logo */
.footer_logo_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}


.footer_tagline {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Center */
.footer_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 0 20px 0;
    text-align: center;
}

.footer_sub {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.footer_heading {
    font-family: var(--mangoGrotesque-regular), sans-serif;
    font-size: 300px;
    color: var(--white);
    font-weight: 700;
    line-height: 0.75;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    letter-spacing: 21px;
}

/* .footer_heading:hover {
    opacity: 0.85;
} */

/* Bottom bar */
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_credit,
.footer_copy {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

.footer_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer_nav_link {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.footer_nav_link:hover {
    color: var(--white);
}

.footer_letter {
    display: inline-block;
    transform-origin: top center;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
}

.footer_letter:hover {
    transform: scaleY(1.25);
}

.footer_space {
    display: inline-block;
    width: 0.22em;
}

/* FOOTER SECTION END */

.index_banner.inner_banner_one .banner_title {
    font-size: 366px;
}

.index_banner.inner_banner_one {
    height: auto;
    padding: 210px 0 140px 0;
}

.category-section {
    width: 95%;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

/* ===== INDIVIDUAL CARD ===== */
.category-card {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
   
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card:hover .card-image img {
    filter: brightness(1.08);
}

/* ===== IMAGE WRAPPER ===== */
.card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 5px solid #ffffff;
    background-color: #2a2a2a;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

/* ===== TEXT AREA ===== */
.card-text {
    padding-top: 14px;
    text-align: left;
}

.card-title {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
    text-align: center;
}

.card-count {
    font-size: 13px;
    font-weight: 400;
    color: #999999;
    line-height: 1.4;
     text-align: center;
}

/* ===== RESPONSIVE: TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
    .category-row {
        gap: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-count {
        font-size: 12px;
    }

    .card-image {
        border-width: 2px;
    }
}

/* ===== RESPONSIVE: SMALL TABLET (≤ 768px) ===== */
@media (max-width: 768px) {
    .category-section {
        padding: 30px 16px;
    }

    .category-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-count {
        font-size: 12px;
    }
}

/* ===== RESPONSIVE: MOBILE (≤ 540px) ===== */
@media (max-width: 540px) {
    .category-section {
        padding: 24px 12px;
    }

    .category-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-count {
        font-size: 11px;
    }

    .card-text {
        padding-top: 10px;
    }

    .card-image {
        border-width: 2px;
        border-radius: 4px;
    }
}

/* ===== RESPONSIVE: VERY SMALL (≤ 360px) ===== */
@media (max-width: 360px) {
    .category-row {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}





.promo-banner {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Strips */
.strip-top {
    height: 12%;
    background-color: #000000;
    width: 100%;
    z-index: 10;
}

.strip-bottom {
    height: 18%;
    background-color: #B620E0; /* Vibrant Purple */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* Main Yellow Area */
.main-content {
    flex: 1;
    background-color: #FFC700; /* Vibrant Yellow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

/* --- Left: Countdown Card --- */
.countdown-wrapper {
    flex: 0 0 auto;
    margin-right: 40px;
}

.countdown-card {
    background-color: #fec600;
    border: 4px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    width: 420px;
    height: 420px;
    padding: 10px;
    transform: scale(1.1);
    z-index: 999;
    position: relative;
}

.timer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    border: 3px solid #02020254; /* Inner subtle border */
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Remove outer borders of grid items to merge with container border if needed, 
   but here we keep them distinct as per grid look */
.timer-box:nth-child(1) { border-right: 3px solid #02020254; border-bottom: 3px solid #02020254; }
.timer-box:nth-child(2) { border-left: none; border-bottom: 3px solid #02020254; }
.timer-box:nth-child(3) { border-right: 3px solid #02020254; border-top: none; }
.timer-box:nth-child(4) { border-left: none; border-top: none; }


.timer-box .number {
    font-family: var(--mangoGrotesque-regular);
    font-size: 75px;
    font-weight: 400;
    color: #000000;
    line-height: 0.9;
    /* margin-bottom: 5px; */
}

.timer-box .label {
    font-size: 15px;
    color: #020202;
    text-transform: capitalize;
}
/* --- Center: Text Content --- */
.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align left within the center block */
    padding-left: 20px;
}

.headline {
    font-family: var(--mangoGrotesque-bold);
    font-size: 90px;
    color: #000000;
    line-height: 0.9;
    margin-bottom: 5px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.sub-headline {
    font-family: var(--mangoGrotesque-bold);
    font-size: 70px;
    color: #000000;
    line-height: 0.9;
    margin-bottom: 35px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.shop-btn {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    box-shadow: 4px 4px 0px #000000;
}

.shop-btn:hover {
     box-shadow: 0px 0px 0px #000000;
    color: #000;
}

/* --- Right: Image Collage --- */
.image-collage {
    flex: 0 0 auto;
    position: relative;
    width: 450px;
    height: 400px;
    margin-right: -20px; /* Slight bleed to right */
}

.frame {
    position: absolute;
    top: -30px;
    transform: scale(1.05);
}





/* Responsive Adjustments */
@media (max-width: 1200px) {
    .promo-banner { height: auto; min-height: 600px; }
    .main-content { flex-wrap: wrap; justify-content: center; gap: 40px; padding: 40px 20px; }
    .countdown-wrapper { margin-right: 0; }
    .text-content { align-items: center; text-align: center; padding-left: 0; order: 2; width: 100%; }
    .image-collage { order: 3; margin: 0 auto; transform: scale(0.8); }
    .headline { font-size: 50px; }
    .sub-headline { font-size: 54px; }
}

@media (max-width: 768px) {
    .countdown-card { width: 220px; height: 220px; }
    .timer-box .number { font-size: 48px; }
    .headline { font-size: 40px; }
    .sub-headline { font-size: 44px; }
    .image-collage { transform: scale(0.6); margin-top: -50px; }
}


.index_shop_banner {
    position: relative;
    width: 100%;
    background: url("../images/shop-banner.png");
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 50px 60px 50px;
    box-sizing: border-box;
    background-color: #000;
    background-size: 95%;
    background-repeat: no-repeat;
    background-position: center;
}

    .banner-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      gap: 60px;
    }

    /* ===== LEFT CONTENT ===== */
    .banner-left {
      flex: 1;
      max-width: 600px;
    }

    .banner-tagline {
      color: #e040d0;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: inline-block;
      position: relative;
    }

    .banner-tagline::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 50px;
      height: 3px;
      background: #e040d0;
      border-radius: 2px;
    }

    .banner-heading {
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .banner-heading h1 {
        font-family: var(--mangoGrotesque-bold), sans-serif;
      font-size: 125px;
      font-weight: 900;
      line-height: 1.05;
      color: #ffffff;
      margin: 0;
    }

    .banner-heading h1 span {
      display: block;
      color: #e040d0;
      font-weight: 900;
    }

    .banner-description {
      color: #b0b0b0;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 10px;
      max-width: 500px;
    }

    /* BUTTONS */
    .banner-buttons {
      display: flex;
      gap: 20px;
      margin-bottom: 50px;
    }

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0c020;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-explore:hover {
      background: #ffd640;
      color: #0a0a0a;
      transform: translateY(-2px);
    }

.btn-commission {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 20px;
    border: 2px solid #e040d0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-commission:hover {
        color: #ffffff;
      background: rgba(224, 64, 208, 0.15);
      transform: translateY(-2px);
    }

    /* FEATURE BOXES */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .feature-box {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 24px 16px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature-box:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(224, 64, 208, 0.3);
    }

    .feature-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: #e040d0;
      stroke-width: 1.5;
    }

    .feature-box h4 {
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      margin: 0 0 10px;
      line-height: 1.4;
    }

    .feature-bar {
      width: 30px;
      height: 3px;
      background: #f0c020;
      margin: 0 auto;
      border-radius: 2px;
    }

    .banner-right {
    max-width: 530px;
    margin: 0 auto;
}

nav.menu_main {
    display: flex;
    align-items: center;
    gap: 20px;
}

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .index_shop_banner { padding: 40px; }
      .banner-heading h1 { font-size: 52px; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .banner-inner { flex-direction: column; }
      .banner-right { min-height: 400px; width: 100%; }
      .banner-heading h1 { font-size: 42px; }
    }

    @media (max-width: 600px) {
      .index_shop_banner { padding: 30px 20px; }
      .banner-heading h1 { font-size: 32px; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .banner-buttons { flex-direction: column; }
    }



/* .gallery_showcase_section {
    padding: 120px 0;
    background: url(../images/gallery-bg.png) center center/cover no-repeat;
} */


.gallery_showcase_section {
    padding: 120px 0;
    background: #bc2fb7;
}



.artwork-display-panel {
            background-color: #000000;
            border-radius: 35px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            height: 100%; /* Ensures equal height in flex row */
            border: 1px solid #fff;
        }

        .artwork-display-panel:hover {
            transform: translateY(-5px);
        }

        /* --- Gold Frame Simulation --- */
        .ornate-gold-frame-container {
            width: 100%;
            margin-bottom: 20px;
            position: relative;

            padding: 12px;
            border-radius: 4px;
        }

        .ornate-gold-frame-container img {
            width: 100%;
            display: block;
        }

        /* --- Text Content --- */
        .artwork-info-block {
            width: 100%;
            text-align: left;
        }

        .artwork-title-heading {
            font-family: var(--clashDisplay-medium), sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .artwork-desc-paragraph {
            font-size: 14px;
            color: #fff;
            line-height: 1.5;
            margin-bottom: 24px;
            min-height: 42px;
        }

        /* --- Purchase Button --- */
        .purchase-action-trigger {
            background-color: #82027E;
            color: #ffffff;
            border: none;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: inline-block;
        }

        .purchase-action-trigger:hover {
            background-color: #6a1b9a;
            color: #ffffff;
        }














.section-padding {
    padding: 130px 0;
}

        /* --- Central Content Styling --- */
        .content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 400px;
            z-index: 10;
            position: relative;
        }

        /* Circular Badge */
.collection-badge {
    width: 110px;
    height: 110px;
    border: 1px solid #d3bfbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    animation: rotateBadge 20s linear infinite;
}

        @keyframes rotateBadge {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .badge-text-ring {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .badge-text-ring text {
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: 2px;
            fill: #000;
            text-transform: uppercase;
        }

        .center-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: #000;
            border-radius: 50%;
        }

        /* Main Title */
        .main-headline {
            font-family: var(--mangoGrotesque-medium), sans-serif;
            font-size: 200px;
            line-height: 1;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-align: center;
        }

        /* CTA Button */
.cta-purple-btn {
    background-color: #82027E;
    color: #ffffff;
    border: none;
    padding: 22px 38px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

        .cta-purple-btn:hover {
            background-color: #6a1b9a;
            color: #fff;
        }

        /* --- Image Collage Logic --- */
        .collage-column {
            position: relative;
            height: 500px; /* Fixed height to allow absolute positioning */
        }

        .art-piece {
            position: absolute;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background-color: #f0f0f0; /* Placeholder bg */
        }

        .art-piece img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .art-piece:hover {
            transform: scale(1.02);
            z-index: 20;
        }

        /* Left Side Positioning */
 .pos-left-top {
            top: 50px;
            left: 50%;
            width: 185px;
            /* height: 240px; */
            z-index: 1;
        }

        .pos-left-mid {
            top: 200px;
            left: 52px;
            width: 270px;
            z-index: 2;
        }

        .pos-left-bot {
            bottom: -40px;
            left: 86%;
            width: 165px;
            z-index: 3;
        }

        /* Right Side Positioning */
.pos-right-top {
    top: 10px;
    right: 20px;
    width: 350px;
    z-index: 1;
}

.pos-right-mid {
    bottom: -50px;
    right: 100%;
    width: 145px;
    z-index: 2;
}

        .pos-right-bot {
            bottom: -20px;
            right: 0;
            width: 165px;
            z-index: -1;
        }
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .main-headline { font-size: 4rem; }
            .collage-column { height: 400px; }
            .art-piece { transform: scale(0.8); }
        }

        @media (max-width: 767px) {
            .content-wrapper { order: -1; margin-bottom: 50px; min-height: auto; }
            .collage-column { height: 300px; width: 100%; display: flex; justify-content: center; }
            .art-piece { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; margin: -20px; }
        }





        /* Product Gallery Wrapper */
.product-gallery-wrapper {
    width: 100% !important;
    position: relative !important;
}

/* Main Product Slider */
.product-main-slider {
    width: 100% !important;
    height: 880px !important;
    background: #f5f5f5 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
}

.product-main-slider .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f5f5f5 !important;
}

.product-main-slider .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.product-thumb-slider {
    width: fit-content !important;
    background: white !important;
    padding: 5px !important;
    border-radius: 12px !important;
    margin-top: 16px !important;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.product-thumb-slider .swiper-wrapper {
    display: flex !important;
}

.product-thumb-slider .swiper-slide {
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
    border: 3px solid transparent !important;
    flex-shrink: 0 !important;
}

.product-thumb-slider .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.product-thumb-slider .swiper-slide:hover {
    opacity: 0.85 !important;
}

.product-thumb-slider .swiper-slide.swiper-slide-thumb-active {
    opacity: 1 !important;
    border-color: #7C1E8F !important;
    box-shadow: 0 4px 12px rgba(124, 30, 143, 0.4) !important;
}

/* Swiper Wrapper Fix */
.product-main-slider .swiper-wrapper,
.product-thumb-slider .swiper-wrapper {
    display: flex !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-main-slider {
        height: 400px !important;
    }

    .product-thumb-slider .swiper-slide {
        height: 80px !important;
    }
}
.product-detail-wrapper {
    background: white !important;
    padding: 32px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}
.badge-primary {
    background: #D93D4F;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    font-size: 18px !important;
    /* font-family: var(--poppins_regular); */
    display: inline-block !important;
    font-weight: 300;
}
/* Product Title */
.product-title {
    font-family:var(--mangoGrotesque-bold), sans-serif !important;
    font-size: 110px !important;
    color: #000 !important;
    margin: 16px 0 !important;
    line-height: 1 !important;
}

/* Price Range */
.price-range {
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 16px !important;
}

.price-range .price {
    font-family: var(--clashDisplay-medium), sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

/* Print Options */
.print-options label {
    color: #000 !important;
    font-size: 16px !important;
}

.print-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.btn-print-active,
.btn-print-inactive {
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 25px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-print-option {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 24px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-print-option .radio-circle {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: white !important;
    border: 3px solid transparent !important;
    flex-shrink: 0 !important;
}

.btn-print-active {
    background: #82027E;
    color: white !important;
}

.btn-print-active .radio-circle {
    background: #000000 !important;
    border: 3px solid white !important;
    box-shadow: inset 0 0 0 3px #040404 !important;
}

.btn-print-active:hover {
    background: linear-gradient(135deg, #5A0F6B, #3D0A4A) !important;
    transform: translateY(-2px) !important;
}

.btn-print-inactive {
    background: #e8e8e8 !important;
    color: #000 !important;
}

.btn-print-inactive .radio-circle {
    background: #ccc !important;
}

.btn-print-inactive:hover {
    background: #d8d8d8 !important;
}

/* Print Size */
.print-size label {
    color: #000 !important;
    font-size: 16px !important;
}

.size-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.btn-size {
    font-family: var(--clashDisplay-Regular), sans-serif !important;
    padding: 12px 18px !important;
    background: #000 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-size:hover {
    background: #333 !important;
    transform: translateY(-2px) !important;
}

.btn-customize {
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #7C1E8F, #5A0F6B) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.btn-customize:hover {
    background: linear-gradient(135deg, #5A0F6B, #3D0A4A) !important;
    transform: translateY(-2px) !important;
}

/* Tabs */
.product-tabs {
    border-bottom: 2px solid #f0f0f0 !important;
}

.tabs-nav {
    display: flex !important;
    gap: 32px !important;
}

.tab-btn {
    font-family: var(--clashDisplay-Semibold), sans-serif !important;
    padding: 12px 0 !important;
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #999 !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.tab-btn.active {
    color: #000 !important;
}

.tab-btn.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #7C1E8F, #5A0F6B) !important;
}

.tab-btn:hover {
    color: #7C1E8F !important;
}

/* Tab Content */
.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

.tab-content p {
    font-family: var(--clashDisplay-medium);
    color: #333 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
}

/* Quantity Selector */
.product-actions {
    margin-top: 24px !important;
}

.quantity-selector {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-right: 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 5px !important;
    background: #E3E3E3;
    height: 46px;
}
.qty-btn {
    background: white !important;
    border: none !important;
    font-size: 18px !important;
    padding: 4px 12px !important;
    cursor: pointer !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
}

.qty-btn:hover {
    color: #7C1E8F !important;
}

.qty-input {
    width: 50px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    background: transparent !important;
}

.qty-input:focus {
    outline: none !important;
}

/* Buy Now Button */
.btn-buy-now {
    font-family: var(--clashDisplay-Semibold);
    padding: 12px 32px !important;
    background: #82027E;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-buy-now:hover {
    background: #82027E;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(124, 30, 143, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 36px !important;
    }

    .size-buttons {
        flex-wrap: wrap !important;
    }

    .btn-customize {
        width: 100% !important;
    }

    .product-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .quantity-selector {
        margin-right: 0 !important;
        width: fit-content !important;
    }

    .btn-buy-now {
        width: 100% !important;
    }
}




.contact_banner {
    padding: 150px 0 60px 0;
    background: url(../images/contact-banner.png) center center/cover no-repeat;
}

.c_container {
    max-width: 1300px;
    padding: 0 12px;
    margin: 0 auto;
}
.contact_info_card {
    padding: 50px 35px 35px 35px;
    background: url(../images/shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 380px;
    height: 555px;
    margin: 0 auto;
}
.contact_info_card h2 {
    font-size: 40px;
    font-family: var(--clashDisplay-medium), sans-serif;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}
.info_flex {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #cccccc69;
    max-width: 275px;
}

.info_flex .text_box p {
    font-size: 16px;
    color: var(--black);
}
.info_flex .text_box a {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
}
.policy_txt {
    font-size: 16px;
    margin-top: 20px;
    color: var(--black);
}
.policy_txt a {
    font-weight: 700;
    color: var(--black);
}

.contact_heading p {
    font-size: 18px;
    color: var(--white); 
    display: flex;
    align-items: center; 
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;  
}
.c_main_heading {
    font-family: var(--mangoGrotesque-bold), sans-serif;
    font-size: 125px;
    color: var(--white);
    line-height: 1;
}

.contact_form_section {
    padding-top: 100px;
}
.contact_form_section p {
    font-size: 18px;
    color: var(--white); 
    display: flex;
    align-items: center; 
    gap: 10px;
    margin-bottom: 20px; 
}


.form-container {
            padding: 40px 30px;
            width: 100%;
        }

        /* Flex row for side-by-side inputs */
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 25px;
        }

        /* Remove bottom margin when inside a flex row */
        .form-row .form-group {
            margin-bottom: 0;
        }

        label {
            display: block;
            color: #ffffff;
            font-size: 15px;
            text-align: right;
            margin-bottom: 10px;
        }

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 19px 16px;
    background-color: #2a2a2a;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        textarea::placeholder {
            color: #666666;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            background-color: #333333;
        }

        textarea {
            min-height: 150px;
            resize: none;
        }

        .submit-btn {
            font-family: var(--clashDisplay-Regular);
            width: 100%;
            padding: 18px;
            background-color: #f5c518;
            color: #000000;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #e6b800;
        }