@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Sarala:wght@400;700&display=swap');

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #f9eddf;
    --accent-peach: #e4aa92;
    --accent-mint: #8ecaa4;
    --accent-pink: #ffafcc;
    --accent-blue: #8dccff;
    --accent-yellow: #ffee94;
    --accent-yellow: #ffee94;
    --accent-purple: #d4a8ea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size:14px;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: "Cabin", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cabin", sans-serif;
}
p, a{
    font-family: "Sarala", sans-serif;
}
a{
    color: #000;
}
.page-wrapper{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}
/* Header Styles */
.main-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-left: 10px;
    padding-right: 10px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.logo-text img{
    max-width: 85%;
}
.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #666;
    display: block;
    margin-top: -5px;
}

.wishlist-cart i{
    font-size:18px;
}
.wishlist-cart i:hover{
    color:#eb2627;
}
.icon-btn.active {
    color: #eb2627; 
}
.icon-btn.active .bi-heart::before {
    content: "\f415";
}
.icon-btn.active .bi-bag::before {
    content: "\f174";
}

.search-box {
    max-width: 400px;
    position: relative;
}

.search-box input {
    border-radius: 4px;
    padding: 10px 45px 10px 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #e6e6e6;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}
.search-icons i{
    color:#666;
    font-weight: 900;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #eb2627 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #eb2627;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.icon-btn {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-btn:hover {
    color: var(--accent-peach);
    transform: scale(1.1);
}

/* Banner HOmepage */
.banner-slider-section {
    margin-top: 8px;
    position: relative;
}

/* Banner Link Wrapper */
.banner-link-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

/* Banner Image */
.banner-slide-image {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* max-height: 600px; */
    transition: transform 0.3s ease;
}

.banner-link-wrapper:hover .banner-slide-image {
    transform: scale(1.05);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 40px;
    border-radius: 6px;
    background-color: #fff;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ========== TEXT OVERLAY ========== */
.banner-overlay {
    position: absolute;
    z-index: 10;
    padding: 2rem;
}

/* Position Variants */
.banner-overlay-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.banner-overlay-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-overlay-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.banner-overlay-top {
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    text-align: center;
}

.banner-overlay-bottom {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    text-align: center;
}

/* Text Content */
.banner-text-content {
    background: linear-gradient(135deg, rgba(255, 253, 253, 0), rgba(0, 0, 0, 0.3));
    padding: 2.5rem 3rem;
    border-radius: 13px;
    backdrop-filter: blur(3px);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Title */
.banner-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

/* Subtitle */
.banner-subtitle-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* CTA Button */
.banner-cta-button {
    padding: 15px 26px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-cta-button:hover {
    transform: translateY(-3px);
}

.banner-cta-button i {
    transition: transform 0.3s ease;
}

.banner-cta-button:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .banner-main-title {
        font-size: 2rem;
    }
    
    .banner-subtitle-text {
        font-size: 1rem;
    }
    
    .banner-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .banner-text-content {
        padding: 1.5rem 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-indicators{
        display: none;
    }
    .banner-overlay-center{
        width: 100%;
    }
}

@media (max-width: 576px) {
    .banner-main-title {
        font-size: 1.4rem;
    }
    
    .banner-subtitle-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .banner-cta-button {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .banner-text-content {
        padding: 1rem 1.5rem;
    }
}

/* ========== SMOOTH TRANSITIONS ========== */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}











/* Feature Section */
.feature-section {
    padding: 50px 10px;
    background: white;
}
.budding-fashion-txt-container{
    padding-left:80px;
    padding-right: 80px;
}
.budding-fashion-talent{
    color: #eb2627;
    margin-top: -10px;
    font-size: 2rem;
}
p.featured_p{
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: -10px;
}
p.lead{
    font-size: 1.1rem;
}
.title-with-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.decor-line {
  flex: 1;
  height: 2px;
  background-color: #000;
  border: none;
  border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.feature-img {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}


/* Theme Section */
.theme-section {
    padding: 25px 20px;
}

.theme-section .rd-text{
    font-size: 1.3rem;
    margin-top: -10px;
}

.own-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.theme-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.theme-carousel-container:active {
    cursor: grabbing;
}

.theme-carousel-track {
    display: flex;
    width: 100%;
}

.theme-carousel-track.no-transition {
    transition: none !important;
}

.carousel-theme-item {
    flex-shrink: 0;
    width: 100%;
}

.theme-carousel-track {
    display: flex;
    width: 100%;
}

.theme-carousel-track.no-transition {
    transition: none !important;
}

.carousel-theme-item {
    flex-shrink: 0;
    width: 100%;
}
.theme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.theme-card-link:hover .theme-card img {
    transform: scale(1.03);
}
.theme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.theme-card-link:hover .theme-card img {
    transform: scale(1.03);
}

.theme-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.theme-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.85);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-nav-btn:hover:not(:disabled) {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-50%) scale(1.1);
}

.theme-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.theme-nav-prev { left: 15px; }
.theme-nav-next { right: 15px; }

.theme-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.theme-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.theme-dot.active {
    background: #000;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .theme-title {
        font-size: 1.4rem;
        padding: 40px 20px 20px;
    }
    .theme-nav-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .theme-title {
        font-size: 1.1rem;
        padding: 30px 15px 15px;
    }
    .theme-nav-btn {
        width: 32px;
        height: 32px;
    }
}



/* Craft Section */
.craft-section {
    padding: 35px 20px;
    background: #000;
}
.craft-card .section-title{
    color: #fff;
    font-size: 1.9rem;
    text-transform: uppercase;
}
.craft-card .section-title-1{
    font-size: 2.7rem;
    color: #fff;
    text-transform: uppercase;
    margin-top: -15px;
    font-weight: 900;
}
.craft-card p.lead{
    color:#fff;
    font-size: 1.3rem;
    margin-top: 0px !important;
}

.craft-img {
    border-radius: 4px;
    overflow: hidden;
    /* height: 500px; */
    margin-top: 30px;
}

.craft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-btn{
    background-color: #eb2627;
    padding: 12px 22px;
    font-weight: 900;
    color: #fff;
    font-size: 1.2rem;
}
.cta-btn:hover{
    background-color: #eb2627;
}

/* Luxury Section */


/* Home Category Scroller */
.category-carousel-section{
    margin-bottom: 15px;
    padding: 10px;
}
.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.category-section-title {
    font-size: 1.5rem;
    color: #000;
    margin: 0;
    font-weight: 100;
}
h3 .category-span{
    font-size: 2rem;
    color: #000;
    font-family: "Cabin", sans-serif;
    font-weight: 900;
    color: #eb2627;
}
.category-nav-arrows {
    display: flex;
    gap: 10px;
}
.category-scroll-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0px 0px 15px 0px;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}

.category-grid {
    display: flex;
    gap: 20px;
}

.category-item {
    flex: 0 0 120px;
    text-decoration: none;
}

.category-box {
    width: 180px;
    height: 230px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover .category-box {
    transform: scale(1.05);
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.category-placeholder i {
    font-size: 3rem;
}

/* Navigation Buttons on Sides */
.category-nav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #000;
    background: white;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.category-nav-btn:hover:not(:disabled) {
    background: #000;
    color: white;
    transform: scale(1.1);
}

.category-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.category-nav-btn i {
    font-size: 1rem;
}

.category-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.category-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-dot.active {
    background: #eb2627;
    width: 20px;
    border-radius: 4px;
}


/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    .category-nav-btn {
        display: none;
    }
    .category-scroll-wrapper {
        gap: 0;
    }
    .category-scroll-container {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767px) {   
    .category-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom:0px;
    }
    .category-section-title {
        font-size: 1rem;
    }
    h3 .category-span{
        font-size: 1.5rem;
    }
    .category-nav-arrows {
        align-self: flex-end;
    } 
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .category-grid {
        gap: 15px;
    }
    
    .category-item {
        flex: 0 0 100px;
    }
    
    .category-box {
       width: 130px;
        height: 150px;
    }
    
    .category-nav-btn {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }
    
    .category-nav-btn i {
        font-size: 1rem;
    }

    .feature-img-container{
        margin-top:0px;
    }
    .budding-fashion-txt-container{
        padding-left:20px;
        padding-right: 20px;
    }
    p.featured_p{
        letter-spacing: 0px;
        font-size:1rem;
    }

}





/* Designer Section */
.designer-section {
    padding: 25px 0;
    background: white;
}

.designer-scroll-wrapper {
    position: relative;
    padding: 0 20px;
}

.designer-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
}

.designer-scroll-container:active {
    cursor: grabbing;
}

.designer-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.designer-card {
    width: 307px;
    flex-shrink: 0;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
    background: #dddcdc;
}

.designer-link {
    text-decoration: none;
    color: inherit;
}

.designer-img-wrapper {
    position: relative;
    width: 280px;
    margin-bottom: 15px;
}

.designer-img {
    border-radius: 4px;
    overflow: hidden;
    width: 280px;
    height: 310px;
}

.designer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    border: 5px solid #fff;
}

.designer-placeholder i {
    font-size: 5rem;
    color: #dee2e6;
}

.designer-section .next-gen-break{
    font-weight: 900;
    font-size: 1.8rem;
    color: #eb2627;
}
.designer-section .text-uppercase{
    font-weight: 100;
}
.designer-section p.text-muted{
    margin-top: -10px;
}

.designer-card h2 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 5px;
    font-weight: 900;
}

.location-text {
    font-size: 0.85rem;
    color: #000;
    margin: 0;
}

.location-text i {
    color: #000;
    font-size: 0.9rem;
}

.btn-view-all {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #eb2627;
    transform: translateY(-2px);
    color: #fff;
}

.designer-profile-section {
    background: #e6e6e6;
    margin-bottom: 50px;
    padding:10px;
}

.designer-profile-card {
    background: white;
    border-radius: 4px;
    padding: 30px;
    margin: 0 auto;
}

.designer-profile-content {
    display: flex;
    gap: 40px;
}

.designer-profile-img {
    width: 240px;
    height: 290px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.designer-info-content {
    flex: 1;
}

.designer-detail-item i {
    color: #000;
    font-size: 16px;
}

.designer-brand-name {
    font-size: 2.5rem;
    font-weight: 700;
}

.designer-description {
    line-height: 1.8;
    font-size: 15px;
}

.designer-vision-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.designer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.designer-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
}

.designer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.product-count {
    color: #666;
    font-size: 1rem;
}

.filters-sidebar {
    background: white;
    border-radius: 4px;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    color: #555;
    font-size: 14px;
    flex: 1;
}

.filter-count {
    color: #999;
    font-size: 13px;
}

.clear-filters-btn {
    width: 100%;
    padding: 10px;
    background: #000;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #eb2627;
    color: white;
}

.section-header-designer-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.designer-header-card{
    padding-left:5px;
    padding-top:5px;
    padding-bottom: 5px;
    background: #eee;
}
.designer-logo-card {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 0.1rem solid #000;
}

.designer-logo-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

.designer-name-card {
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    margin-left: 3px;
    font-family: "Sarala", sans-serif;
}

.designer-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 10px;
}

.designer-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.designer-dot.active {
    background: #eb2627;
    width: 20px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .designer-scroll-wrapper {
        padding: 0 15px;
    }
    
    .designer-card {
        width: 280px;
    }
    
    .designer-img-wrapper,
    .designer-img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .designer-section {
        padding: 28px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .designer-scroll-wrapper {
        padding: 0px;
    }
    
    .designer-card {
        width: 250px;
        padding: 12px;
    }
    
    .designer-img-wrapper,
    .designer-img {
        width: 100%;
        height: 280px;
    }
    
    .designer-card h5 {
        font-size: 1rem;
    }
    .designer-scroll-container{
        gap:15px;
        padding: 5px 0;
    }
}



/* Product Section */
.banner-section {
    background: linear-gradient(135deg, var(--accent-peach) 0%, var(--accent-purple) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: white;
    opacity: 0.95;
}

    /* Shop by Brand Section */
.brand-section {
    padding: 60px 0;
    background: white;
}


/* Brand Section */

/* Scroll Container with Fade Edges */
.brand-grid {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    scroll-snap-type: x proximity;
}

.brand-grid::-webkit-scrollbar {
    display: none;
}

/* Brand Card */
.brand-card {
    width: 220px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.brand-card:hover {
    z-index: 10;
}

/* Bold Centered Text */
/* .brand-name {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
} */

/* Scroll Buttons */
.scroll-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background: white;
    border: 1.5px solid #ddd !important;
    transition: all 0.2s ease;
}

.scroll-btn:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #999 !important;
    transform: scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-controls {
        display: none;
    }
    .brand-card {
        width: 180px;
        height: 150px;
    }
    /* .brand-name {
        font-size: 0.9rem !important;
    } */
}

@media (max-width: 576px) {
    .brand-card {
        width: 160px;
        height: 130px;
    }
}


/* Filter Section */
.filter-section {
    background: white;
    padding: 25px 0;
    position: sticky;
    top: 72px;
    z-index: 999;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: whitesmoke;
    background: #eb2627;
    color: white;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.sort-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    margin-top: 10px;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-content.show {
    display: block;
}

.dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--secondary-color);
}

/* Sidebar Filter (Mobile) */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.filter-sidebar.active {
    left: 0;
}

.filter-sidebar-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-sidebar-content {
    padding: 20px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Load More Button */
.load-more-section {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}


/* New drop */
 /* Carousel Slide Section */
.carousel-slide {
    background: var(--accent-peach);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.carousel-slide h2 {
    font-size: 3rem;
    color: rgba(0,0,0,0.3);
    font-style: italic;
}

/* Filter Categories */
.category-filter {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--accent-peach);
    color: var(--primary-color);
}


/* Section Title with Explore Button */
.section-label {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* Footer */
.footer-section {
    background: #dddcdc;
    color: white;
    padding: 30px 0px 0px 0px;
}

.footer-title {
    font-size:1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #000;
}

.footer-link {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-family: "Sarala", sans-serif;
}

.footer-link:hover {
    color: #eb2627;
    padding-left: 5px;
}
p.signup-p {
    color: #000;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon i{
    font-size: 1.4rem;
}

.social-icon:hover {
    background: #eb2627;
    color: white;
    transform: translateY(-3px);
}


/* Login and Register Styling */
.otp-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-box-login, .otp-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
}

.otp-box-login:focus, .otp-box:focus {
    border-color: #000;
}

.mobile-input-group {
    position: relative;
}

.mobile-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #666;
    pointer-events: none;
}

.mobile-input {
    padding-left: 55px !important;
}

.auth-card {
    border-radius: 4px;
    border: none;
}

.google-btn {
    border: 2px solid #ddd;
    font-weight: 600;
    padding: 14px;
    transition: all 0.3s;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #000;
}

.divider-text {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider-text span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
}

.btn-send-otp {
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s;
}

.btn-send-otp:hover {
    background: #333;
    transform: translateY(-2px);
    color:#fff;
}

.btn-verify {
    background: #28a745;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    border: none;
}

.btn-verify:hover {
    background: #218838;
}

.form-control {
    border-radius: 4px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
}

.form-control:focus {
    border-color: #000;
}

.link-text {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.link-text:hover {
    color: #000;
}


/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    .banner-title {
        font-size: 3rem;
    }
    .carousel-slide{
        height: 250px;
    }
    .carousel-slide h2 {
        font-size: 2.5rem;
    }

    /* .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    } */
}

@media (max-width: 767px) {
    .new-drops-card {
        height: 400px;
    }

    .women-card, .men-card {
        height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin: 20px 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-section, .theme-section, .craft-section {
        padding: 30px 15px 20px 15px;
    } 

    p.lead{
        font-size:1rem;
    }

    .craft-card {
        padding: 0px 0px;
    }
    .craft-card .section-title{
        font-size: 1.5rem;
    }
    .craft-card .section-title-1{
        font-size: 1.80rem;
    }
    .craft-card p.lead{
        font-size: 1rem;
    }
    br.br-none{
        display: none;
    }

    .theme-card {
        height: 400px;
    }
     .banner-section {
        padding: 50px 0;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    /* .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
    .filter-section {
        top: 60px;
    }
    .carousel-slide {
        height: 200px;
        margin: 20px 0;
    }

    .carousel-slide h2 {
        font-size: 2rem;
    }

    .category-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .category-btn {
        white-space: nowrap;
    }
}


/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */

/* Add padding to main content on mobile to account for bottom nav */

/* Bottom Navigation Container */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 8px;
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

/* Navigation Item */
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
    min-width: 70px;
}

/* Icon */
.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Text Label */
.mobile-bottom-nav .nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hover Effect */
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

/* Active State */
.mobile-bottom-nav .nav-item.active {
    color: #eb2627;
    background: #f5f5f5;
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

/* Specific Icon Styles for Active State */
.mobile-bottom-nav .nav-item.active .bi-house-door::before {
    content: "\f422"; /* bi-house-door-fill */
}

.mobile-bottom-nav .nav-item.active .bi-grid::before {
    content: "\f3fb"; /* bi-grid-fill */
}

.mobile-bottom-nav .nav-item.active .bi-stars::before {
    content: "\f5a4"; /* bi-stars-fill */
}

.mobile-bottom-nav .nav-item.active .bi-person::before {
    content: "\f4da"; /* bi-person-fill */
}
.mobile-bottom-nav .nav-item.active .bi-lightbulb::before {
    content: "\f468"; /* bi-lightbulb-fill */
}


/* Safe area for iPhones with notch */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
}

/* Show footer on desktop only */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    
    .main-content-mobile {
        padding-bottom: 0 !important;
    }
}

/* Smooth Transitions */
.mobile-bottom-nav .nav-item {
    -webkit-tap-highlight-color: transparent;
}

/* Alternative Color Scheme (Optional) */
.mobile-bottom-nav.dark-theme {
    background: #1a1a1a;
    border-top-color: #333;
}

.mobile-bottom-nav.dark-theme .nav-item {
    color: #999;
}

.mobile-bottom-nav.dark-theme .nav-item.active {
    color: #fff;
    background: #2a2a2a;
}

/* Hide mobile menu toggle on mobile when bottom nav is active */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: none !important;
    }
    
    #mobileMenu {
        display: none !important;
    }
}

@media (max-width:420px) {
    .auth-card .card-body{
        padding:20px!important;
    }
}





/* ========================================
   DESIGNER REGISTRATION FORM
   ======================================== */

.designer-registration-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f2f2f2 0%, #595959 100%);
    padding: 40px 20px;
    font-family: "Cabin", sans-serif;
}

.registration-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Form Header */
.registration-header {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.registration-header h1 {
    font-family: "Cabin", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.registration-header p {
    font-family: "Sarala", sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Progress Bar */
.progress-tracker {
    background: #fff;
    border-radius: 50px;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 30px;
    height: 3px;
    background: red;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e9ecef;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #636e72;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: green;
    border-color: green;
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    color: #636e72;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #000;
    font-weight: 600;
}

/* Form Card */
.registration-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
}

.form-step {
    display: none;
    animation: fadeInStep 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.step-title {
    font-family: "Cabin", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-subtitle {
    font-family: "Sarala", sans-serif;
    color: #636e72;
    margin-bottom: 40px;
}

/* Form Layout */
.form-row-designer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-designer {
    margin-bottom: 25px;
}

.form-group-designer label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.required-field {
    color: red;
}

.form-input-designer {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: "Cabin", sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input-designer:focus {
    outline: none;
    border-color: #000;
}

textarea.form-input-designer {
    min-height: 120px;
    resize: vertical;
}

select.form-input-designer {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* File Upload */
.file-upload-box {
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload-box:hover {
    border-color: var(--accent-peach);
    background: rgba(228, 170, 146, 0.02);
}

.file-upload-box input[type="file"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--accent-peach);
    margin-bottom: 10px;
}

.upload-text {
    color: #636e72;
    margin-bottom: 5px;
}

.upload-limit {
    font-size: 0.85rem;
    color: #999;
}

.file-selected {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--accent-mint);
    font-weight: 500;
}

/* Declaration Box */
.declaration-container {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.declaration-container h4 {
    font-family: "Cabin", sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.declaration-container p {
    font-family: "Sarala", sans-serif;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.declaration-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.declaration-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.declaration-check label {
    font-family: "Sarala", sans-serif;
    cursor: pointer;
}

/* Form Actions */
.form-actions-designer {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: space-between;
}

.btn-designer {
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Cabin", sans-serif;
}

.btn-designer-primary {
    background: #000;
    color: #fff;
}

.btn-designer-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-designer-secondary {
    background: #e9ecef;
    color: var(--primary-color);
}

.btn-designer-secondary:hover {
    background: #dee2e6;
}

.btn-designer:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Message */
.success-container {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-container.active {
    display: block;
}

.success-icon-circle {
    width: 100px;
    height: 100px;
    background: var(--accent-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: #fff;
    animation: scaleSuccess 0.5s ease-out;
}

@keyframes scaleSuccess {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-container h2 {
    font-family: "Cabin", sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.success-container p {
    font-family: "Sarala", sans-serif;
    color: #636e72;
    line-height: 1.6;
}

/**/


/* Responsive Design */
@media (max-width: 991px) {
    .registration-header h1 {
        font-size: 2rem;
    }
    
    .registration-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .designer-registration-page {
        padding: 20px 10px;
    }
    
    .registration-header h1 {
        font-size: 1.75rem;
    }
    
    .registration-form-card {
        padding: 30px 20px;
    }
    
    .form-row-designer {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-wrap: wrap;
    }
    
    .progress-step {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .btn-designer {
        padding: 14px 30px;
    }
    .footer-section{
        padding:30px 0px 60px 0px;
    }
}

@media (max-width: 420px) {
    .registration-form-card {
        padding: 20px 15px;
    }
    
    .progress-tracker {
        padding: 15px 20px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}


.list-group-item.active{
    background-color: #000;
}


/* Our Story */
.story-hero-banner {
    background: linear-gradient(135deg, #e81f1f 0%, #0f0e0e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.story-hero-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.story-hero-heading {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.story-hero-description {
    font-size: 1.5rem;
    color: white;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-mission-block {
    padding: 25px 20px;
}

.story-heading-main {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.welcome-text-body {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.brand-highlight {
    color: var(--accent-peach);
    font-weight: 600;
}

/* Services Showcase */
.services-showcase-block {
    padding: 25px 20px;
    background: whitesmoke;
}

.service-box {
    background: white;
    border-radius: 4px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #eb2627;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-symbol {
    width: 80px;
    height: 80px;
    background: var(--accent-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    margin:10px auto;
}
.service-symbol i{
    font-size:25px;
}

.service-box:hover .service-symbol {
    transform: scale(1.1) rotate(5deg);
}

.service-box .service-symbol {
    background: #eb2627;
}


.service-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align:center;
}

.service-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    text-align:center;
}

/* Inspiration Story Block */
.inspiration-story-block {
    padding: 25px 20px;
}

.inspiration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inspiration-photo-wrapper {
    border-radius: 4px;
}

.inspiration-photo-wrapper img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.inspiration-photo-wrapper:hover img {
    transform: scale(1.05);
}

.inspiration-content-area p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Achievement Statistics */
.achievement-stats-area {
    padding: 50px 0;
    color: white;
    background-color: #000;
}

.achievement-box {
    text-align: center;
}

.achievement-figure {
    font-size: 4rem;
    font-weight: 700;
}

.achievement-description {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    font-family: "Sarala", sans-serif!important;
}

/* Designer Program Block */
.designer-program-block {
    padding: 80px 0;
    background: whitesmoke;
}

.program-info-wrapper {
    background: white;
    border-radius: 4px;
    padding: 20px;
}

.program-main-heading {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.program-benefits-list {
    list-style: none;
    padding: 0;
}

.program-benefits-list li {
    font-size: 1.15rem;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.program-benefits-list li:last-child {
    border-bottom: none;
}

.program-benefits-list li::before {
    content: '✓';
    width: 35px;
    height: 35px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Brand Values Area */
.brand-values-area {
    padding: 25px 20px;
}

.values-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 22px;
}

.value-display-box {
    text-align: center;
    padding: 30px;
    border-radius: 4px;
    background: whitesmoke;
    transition: all 0.3s ease;
}

.value-display-box:hover {
    transform: translateY(-5px);
    background: #eb2627;
    color: white;
}

.value-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Join Action Block */
.join-action-block {
    padding: 50px 0;
    background: whitesmoke;
    text-align: center;
}

.join-main-heading {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.join-description {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.join-action-button {
    background: #000;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.join-action-button:hover {
    background: #eb2627;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .story-hero-heading {
        font-size: 3.5rem;
    }

    .story-heading-main {
        font-size: 2.5rem;
    }

    .inspiration-layout {
        grid-template-columns: 1fr;
    }

    .achievement-figure {
        font-size: 3rem;
    }

    .join-main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .story-hero-banner {
        padding: 60px 0;
    }

    .story-hero-heading {
        font-size: 2.5rem;
    }

    .story-hero-description {
        font-size: 1.2rem;
    }

    .story-heading-main {
        font-size: 2rem;
    }

    .welcome-text-body,
    .inspiration-content-area p {
        font-size: 1rem;
    }

    .service-box {
        padding: 30px 20px;
    }

    .program-info-wrapper {
        padding: 30px 20px;
    }

    .achievement-figure {
        font-size: 2.5rem;
    }

    .join-main-heading {
        font-size: 2rem;
    }

    .values-display-grid {
        grid-template-columns: 1fr;
    }
}


/*DASHBOARD*/
.dashboard-section{
    padding: 10px;
}
a.btn-edit-profile{
    border: 0.1rem solid #000;
    padding: 8px;
    font-size: 1.1rem;
}

a.btn-edit-profile:hover{
    border:0.1rem solid #eb2627;
}
a.list-group-item-custom{
    padding:10px;
}
a.btn-outline-dark{
    border: 0.1rem solid #000;
    padding: 8px 13px;
    font-size: 0.9rem;
}
a.list-group-item-custom-active{
    background-color: #000;
    color: #fff;
}
a.list-group-item-custom-active:hover{
    background-color: #000;
    color: #fff;
}
a.outline-dark-btn{
    border: 0.1rem solid #000;
    padding: 7px 12px;
    font-size: 0.9rem;
}
a.outline-dark-btn:hover{
    border: 0.1rem solid #000;
    padding: 7px 12px;
    font-size: 0.9rem;
}

a.outline-danger-btn{
    border: 0.1rem solid #eb2627;
    padding: 7px 12px;
    font-size: 0.9rem;
    color: #eb2627;
}
a.outline-danger-btn:hover{
    border: 0.1rem solid #eb2627;
    padding: 7px 12px;
    font-size: 0.9rem;
    color: #eb2627;
}


.dontationCustomWrap{
    max-width:340px;
}
.dontationCustomWrap .dontation_input{
    height: 45px;
}

.dontationCustomWrap .rupees_symbol_donation_span{
    width: 42px;
    font-size:1.1rem;
    background-color: whitesmoke;
}

.dontation_submit_btn{
    width: 55px;
}