:root {
    --primary-color: #373098 !important;
    /* Purple */
    --light-bg-text-color: #101010 !important;
    /* Black */
    --dark-bg-text-color: #fff !important;
    /* White */
    --btn-text: #f4f4f4 !important;
    /* --primary-color: #373098; */
    --secondary-color: #764ba2 !important;
    --bg-light: #f8f9fa !important;
    --text-dark: #333 !important;
    --text-muted: #6c757d !important;
    --border-color: #e9ecef !important;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial/ARIAL.TTF') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Arial';
    src: url('../fonts/Arial/ArialMdm.ttf') format('truetype');
    font-weight: 500;
}




h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arimo";
}

p,
a,
button {
    font-family: "Arial";
}

.header-top-bar {
    background: var(--primary-color);
    padding: 10px 5px;
}

.email-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

.social-wrapper {
    display: flex;
    gap: 12px;
    /* icons ke beech mein spacing */
    align-items: center;
    justify-content: right;
}

.social-wrapper i {
    color: #fff;
    font-size: 24px;
    /* thoda bada kiya size */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Brand Colors on Hover */
.social-wrapper i.fa-square-facebook:hover {
    color: #1877f2;
    /* Facebook blue */
    transform: translateY(-3px);
}

.social-wrapper i.fa-instagram:hover {
    color: #e4405f;
    /* Instagram pink */
    transform: translateY(-3px);
}

.social-wrapper i.fa-square-twitter:hover {
    color: #1da1f2;
    /* Twitter blue */
    transform: translateY(-3px);
}

.social-wrapper i.fa-square-youtube:hover {
    color: #ff0000;
    /* YouTube red */
    transform: translateY(-3px);
}

/* Effect 1: Scale Up with Brand Colors */
.social-wrapper i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-wrapper i:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.social-wrapper i {
    color: #fff;
    font-size: 18px;
    margin-right: 8px;
}

.email-wrapper a i {
    margin-right: 10px;
}

.icons-parent {
    display: flex;
    gap: 15px;
}


.icons-parent {
    display: flex;
    gap: 8px;
    max-width: 100%;
    justify-content: right;
    align-items: center;
}

.logo-sec {
    position: absolute;
    top: 18px;
    z-index: 999;
}

.navbar-nav .nav-link {
    padding: 10px 4px !important;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color, #667eea);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color, #667eea);
}

.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color, #667eea);
    font-weight: 600;
}

.primary-custom-btn {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.primary-custom-btn i {
    margin-right: 5px;
}

.primary-custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.5s ease;
}

.primary-custom-btn:hover::before {
    left: 100%;
}

.primary-custom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--dark-bg-text-color);
}

ul.navbar-nav li a {
    margin-left: 16px;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
}

header.header-sec {
    padding: 27px 5px;
    position: relative;
}

.track-order-btn {
    margin-left: 18px;
}

.search-link {
    text-decoration: none;
    display: inline-block;
    min-width: 40px;
    min-height: 40px;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.search-link i {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover Effect 1: Scale with Shadow */
.search-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    background: var(--primary-color-dark, #5a6fd8);
}

/* Common styling for both icons */
.cart-wrapper,
.user-wrapper {
    display: inline-block;
}

.cart-link,
.user-link {
    text-decoration: none;
    min-width: 40px;
    min-height: 40px;
    height: 40px;
    width: 40px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.cart-link i,
.user-link i {
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}


.track-order-btn a.primary-custom-btn {
    padding: 14px 18px;
}

/* Effect 1: Primary Color with Scale (Recommended) */
.cart-link:hover,
.user-link:hover {
    background: var(--primary-color, #667eea);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cart-link:hover i,
.user-link:hover i {
    color: #fff;
}

section.banner-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 890px;
    background: url(../images/banner.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 64px 12px;
    position: relative;
}

.subheading-box {
    width: 40%;
    background: var(--primary-color);
    color: var(--dark-bg-text-color);
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.subheading-box h3 {
    font-size: 21px;
    font-weight: 700;
    font-family: 'Arial';
    margin: 0;
}

.banner-content-wrapper h2 {
    font-size: clamp(32px, 6vw, 73px);
    line-height: 1.1;
    color: var(--dark-bg-text-color);
    font-weight: 700;
    text-transform: capitalize;
}

.banner-content-wrapper p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 21px;
    width: 70%;
}

.banner-rating {
    padding: 18px 0;
}

.banner-heading {
    position: relative;
    padding-bottom: 25px;
}

.banner-heading img {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.banner-image-wrapper {
    padding-top: 250px;
}

.banner-shirt-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44%;
    max-width: 44%;
}

/* About Section */

section.about-sec {
    padding: 64px 12px;
}

.abt-content-wrapper h3 {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Arial';
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.abt-content-wrapper h2 {
    font-size: 42px;
    width: 70%;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.abt-content-wrapper p {
    color: #5D5D5D;
    font-size: 18px;
    font-weight: 500;
}

.abt-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    /* row gap | column gap */
    padding: 0;
    margin: 0;
    list-style: none;
}

.abt-list ul li {
    list-style-type: none;
    font-size: 19.2px;
    font-weight: 500;
}

.abt-list {
    padding-bottom: 32px;
}

.abt-list ul .icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    min-height: 28px;
    min-width: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
}

.abt-list ul .icon-1 {
    background: #FFDCC0;
}

.abt-list ul .icon-2 {
    background: #C5E9E7;
}

.abt-list ul .icon-3 {
    background: #F2D2FF;
}

.abt-list ul .icon-4 {
    background: #F3E6C0;
}

.abt-list ul .icon-4 i {
    color: #FFBF00 !important;
}

.abt-list ul .icon-2 i {
    color: #10A19D !important;
}

.abt-list ul .icon i {
    color: var(--primary-color);
}

.abt-content-wrapper {
    padding-top: 80px;
}

/* Marquee Section */
.marquee-sec {
    background: var(--primary-color);
    padding: 5px 0;
    overflow: hidden;
}

.marquee-trigger .slick-track {
    display: flex !important;
    align-items: center !important;
}

.marquee-trigger .slick-slide {
    height: auto !important;
}

.marquee-trigger .items {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.items img {
    width: 50px;
}

.marquee-trigger h2 {
    color: var(--dark-bg-text-color);
    font-size: 42px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

/* Categories Section */

.categories-sec {
    padding-bottom: 36px;
}

.categories-heading-wrapper {
    text-align: center;
    width: 48%;
    margin: 0 auto;
}

.categories-heading-wrapper h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Arial';
    letter-spacing: 2px;
    color: var(--primary-color);
}

.categories-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 51px;
    color: var(--light-bg-text-color);
}

.categories-heading-wrapper p {
    color: #5D5D5D;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}

.categories-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.categories-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image */
.categories-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
    /* radius intact */
    transition: transform 0.5s ease;
    object-fit: cover;
}

/* Text */
.categories-card h5 {
    margin: 18px 0;
    text-align: center;
    color: var(--light-bg-text-color);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Overlay Shine */
.categories-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

/* Hover Effects */
.categories-card:hover img {
    transform: scale(1.08);
}

.categories-card:hover h5 {
    color: var(--primary-color);
    letter-spacing: 0.8px;
}

.categories-card:hover::before {
    transform: translateX(100%);
}

.view-all-wrapper {
    padding: 32px 0;
}

/* Single Product Section */
section.single-product-sec {
    padding: 24px 5px;
}

.custom-gutter {
    --bs-gutter-x: 5rem !important;
}

.gallery-wrapper {
    margin-top: 20px;
}

.main-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
}

.gallery {
    margin-top: 10px;
}

.gallery-items {
    padding: 5px;
    cursor: pointer;
}

.gallery-items img {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.gallery-items img.active,
.gallery-items img:hover {
    border-color: var(--primary-color);
}

section.single-product-sec .slick-next:before {
    content: "\f105" !important;
}

section.single-product-sec .slick-prev:before {
    content: "\f104" !important;
}

section.single-product-sec .slick-prev:before,
section.single-product-sec .slick-next:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    color: var(--primary-color) !important;

}

.heading-box-wrapper {
    display: flex;
    justify-content: space-between;
}

.heading-box-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.heading-box {
    padding: 24px 12px;
    border-bottom: 1px solid #E4E4E4;
}

.heart-box {
    background: #FFF0F0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
}

.save-box {
    background: #EDF0F8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
}

.save-box i {
    color: var(--primary-color);
}

.share-box {
    background: #EDF0F8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
}

.save-box i {
    color: var(--primary-color);
}


.heart-box i {
    margin-right: 8px;
    color: #D46F77;
}

.heart-box span {
    color: #D46f77;
    font-weight: 700;
}

.heading h3 {
    font-size: 29px;
    font-weight: 700;
}

.heading-box h6 {
    color: #B9BBBF;
    font-size: 17px;
}

.price-sec {
    padding: 24px 12px;
    border-bottom: 1px solid #E4E4E4;
}

.price-wrapper {
    display: flex;
    gap: 70px;
}

.price h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price h6 {
    font-size: 24px;
    color: #00000085;
}

.price-icons {
    display: flex;
    gap: 20px;
}

.review-icon {
    background: #FBF3EA;
    padding: 6px 20px;
    border-radius: 18px;
}

.review-icon i {
    margin-right: 12px;
    color: #D48D3B;
}

.review-icon span {
    color: #D48D38;
    font-weight: 700;
    font-size: 18px;
}

.customer-icon {
    background: #EDF0F8;
    padding: 6px 20px;
    border-radius: 18px;
}

.customer-icon i {
    margin-right: 12px;
    color: var(--primary-color);
}

.customer-icon span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.desc-sec p {
    color: #B9BBBF;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.desc-sec {
    padding: 15px 12px;
}

.desc-sec p strong {
    color: #3E9242;
}

.color-sec {
    padding: 24px 12px;
    border-bottom: 1px solid #E4E4E4;
}

.choose-color h6 {
    color: #B9BBBF;
    font-size: 18px;
    font-weight: 600;
}

.color-selectors {
    display: flex;
    gap: 20px;
}

.color-option {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.color-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.check-icon {
    position: absolute;
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}


.color-option.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

.size-heading-wrapper {
    padding-bottom: 14px;
}

.size-scales {
    display: flex;
    gap: 17px;
    align-items: center;
}

.radio-selectors {
    background: #F3F3F3;
    padding: 6px 12px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.radio-selectors label {
    font-size: 15px;
    color: #726C6C;
    font-weight: 500;
    font-family: 'Arial';
    margin-top: 5px;
}

.size-heading-wrapper h6 {
    color: #B9BBBF;
    font-size: 18px;
    font-weight: 600;
}

.size-sec {
    padding: 24px 12px;
    border-bottom: 1px solid #E4E4E4;
}

.radio-selectors input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    border-radius: 50%;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-right: 6px;
    transition: 0.3s ease;
    margin-top: 1px;
}

/* Inner dot */
.radio-selectors input[type="radio"]::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease;
}

/* When checked */
.radio-selectors input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.radio-selectors input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

.single-product-content-wrapper .cart-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 35px 0 !important;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #F3F3F3;
    padding: 15px 30px;
    border-radius: 12px;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    transition: 0.2s ease;
}

.qty-btn:hover {
    color: var(--primary-color);
}

.quantity {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.add-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-cart-btn:hover {
    opacity: 0.9;
}


/* Statement Section */
section.statement-sec {
    padding: 64px 12px;
}

.statement-heading-wrapper {
    text-align: center;
    width: 47%;
    margin: 0 auto;
}

.statement-heading-wrapper h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Arial';
    letter-spacing: 2px;
}

.statement-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--light-bg-text-color);
    line-height: 50px;
}

.statement-heading-wrapper p {
    font-size: 16px;
    font-weight: 500;
    color: #5d5d5d;
    line-height: 24px;
}

.statement-item {
    min-height: 300px !important;
    box-shadow: 7px 4px 49.7px 0px #0000002e;
    border-radius: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.4s ease;
    background: #fff;
}

/* Center slide */
.slick-slide.slick-center {
    background: var(--primary-color) !important;
    transform: scale(1.05);
    z-index: 2;
}

.slick-list {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.statement-trigger {
    margin: 40px -15px;
}

.slick-center p {
    color: #fff !important;
}

.slick-center img {
    filter: invert();
}

.statement-trigger {
    margin: 0 -15px;
}

.statement-trigger .slick-slide {
    margin: 0 15px;
    padding: 0 51px;
}

.statement-item img {
    position: absolute;
}

.statement-item p {
    font-size: 24px;
    line-height: 35px;
    color: #101010;
    text-align: center;
}

section.statement-sec .slick-prev,
.slick-next {
    background: #fff !important;
    height: 50px !important;
    width: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0px 4px 4px 0 #00000038;
    z-index: 999999;
}

section.statement-sec .slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-size: 20px;
    color: var(--light-bg-text-color) !important;

}

section.statement-sec .slick-prev:before {
    content: "\f060" !important;

}

section.statement-sec .slick-next:before {
    content: "\f061" !important;
}


/* Featured Products Sec */
.featured-products-sec {
    padding: 64px 12px;
    background: #EDEDED;
}

.featured-products-sec .featured-heading-wrapper h3 {
    font-size: 21px;
    color: var(--primary-color);
    font-family: "arial";
    font-weight: 700;
    text-transform: uppercase;
}

.featured-heading-wrapper {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.featured-heading-wrapper p {
    font-size: 16px;
    color: #5d5d5d;
}

.featured-heading-wrapper {
    padding-bottom: 26px;
}

.featured-products-sec .featured-heading-wrapper h2 {
    font-size: 42px;
    color: var(--light-bg-text-color);
    font-weight: 700;
}

.custom-tabs {
    gap: 15px;
}

.custom-tabs .nav-link {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.custom-tabs .nav-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.custom-tabs .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.featured-products-cards {
    /* background: #fff; */
    padding: 15px 15px 23px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 5px 0 #00000014;
    position: relative;
    overflow: hidden;
}

.featured-products-cards::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.featured-products-cards img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
    /* radius intact */
    transition: transform 0.5s ease;
    object-fit: cover;
}

.featured-products-cards:hover::before {
    transform: translateX(100%);
}

/* Hover Effects */
/* .featured-products-cards:hover img {
    transform: scale(1.08);
} */

.featured-products-cards h4 {
    font-size: 22px;
    color: var(--light-bg-text-color);
    font-weight: 700;
    font-family: "arial";
    transition: 0.3s all ease;
    letter-spacing: 1.1px;
}

.featured-products-cards:hover h4 {
    color: var(--primary-color);
    letter-spacing: 0.8px;
}

.featured-products-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.featured-product-image {
    position: relative;
    margin-bottom: 20px;
}

.featured-action-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 9px;
}

.featured-action-icons>a {
    background: #fff;
    padding: 7px 11px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Icon inherit kare color */
.featured-action-icons>a i {
    transition: 0.3s ease;
}

/* Hover Effect */
.featured-action-icons>a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.featured-action-icons>a:hover i {
    color: #fff;
}

.modal-xl {
    max-width: 90vw !important;
}

.modal-content {
    max-width: 100% !important;
}

/* FAQ Section */
.accordion {
    /* max-width: 600px; */
    margin: 0 auto;
    border-radius: 8px;
    background: #fff;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.accordion-item {
    border: 0 !important;
}

.accordion-header {
    background: #fff;
    cursor: pointer;
    padding: 18px 20px 18px 0;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    transition: background 0.3s;
    justify-content: start;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header::after {
    content: '\2b';
    font-family: "font awesome 6 free";
    font-weight: 900;
    font-size: 20px;
    transition: transform 0.3s;
    margin-right: 14px;
}

.accordion-header.active::after {
    content: '\f068';
    font-family: "font awesome 6 free";
    font-weight: 900;
    transform: rotate(180deg);
    margin-right: 14px;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    /* background: #fafafa; */
    max-width: 90%;
}

.accordion-header.active {
    color: var(--primary-color);
}

.accordion-content p {
    padding: 15px 0;
    margin: 0;
    line-height: 1.5;
    color: #5d5d5d;
    font-weight: 600;
    font-family: 'Arimo';
}

section.faq-sec {
    padding: 64px 12px;
}

section.faq-sec h3 {
    font-size: 21px;
    color: var(--primary-color);
    font-family: "arial";
    font-weight: 700;
    text-transform: uppercase;
}

section.faq-sec h2 {
    font-size: 42px;
    color: var(--light-bg-text-color);
    font-weight: 700;
}

section.faq-sec p {
    font-size: 16px;
    color: #5d5d5d;
}

/* Testimonials Section */
section.testimonial-sec {
    padding: 64px 12px;
}



section.testimonial-sec .testimonials-container {
    max-width: 1000px !important;
    text-align: center;
}

.testimonial-heading-wrapper {
    padding-bottom: 64px;
}

.testimonial-heading-wrapper h3 {
    font-size: 21px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: "arial";
    letter-spacing: 1.1px;
    font-weight: 700;
}

.testimonial-heading-wrapper h2 {
    font-size: 42px;
    color: var(--light-bg-text-color);
    font-weight: 700;

}

.testimonial-heading-wrapper p {
    color: #5d5d5d;
    font-size: 16px;
    width: 70%;
    margin: 0 auto;
}

.testimonial-image {
    padding-bottom: 12px;
}

.testimonial-desc {
    padding-top: 24px;
    width: 76%;
    margin: 0 auto;
    font-size: 23px;
    color: #101010;
}

.testimonial-content-wrapper {
    border-bottom: 1px dashed #b4b4b4;
}

.testimonial-content-wrapper h5 {
    color: #5d5d5d;
    font-size: 20px;
    font-weight: 500;
}

/* Customization CTA Section */
.customization-cta-sec {
    background: url(../images/customization-cta.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 12px;
    text-align: center;
}

.customization-cta-content-wrapper h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

.customization-cta-content-wrapper p {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
}

.customization-btns-sec {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.secondary-btn {
    position: relative;
    display: inline-block;
    background: transparent;
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    border: 2px solid var(--dark-bg-text-color);
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.secondary-btn i {
    margin-right: 5px;
}

.secondary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.5s ease;
}

.secondary-btn:hover::before {
    left: 100%;
}

.secondary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--dark-bg-text-color);
}

.create-t-shirt {
    position: relative;
    display: inline-block;
    background: transparent;
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--dark-bg-text-color);
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid var(--dark-bg-text-color);
}

.create-t-shirt i {
    margin-right: 5px;
    color: var(--primary-color);
}

.create-t-shirt::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.5s ease;
}

.create-t-shirt:hover::before {
    left: 100%;
}

.create-t-shirt:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

section.contact-us-sec {
    padding: 64px 12px;
}

.contact-form-wrapper {
    background: #eaeaea;
    padding: 37px 42px 12px 42px;
    border-radius: 20px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 9px 24px;
    border-radius: 7px;
    border: 1px solid #69727D;
    font-size: 16px;
    font-weight: 500;
}

.input-wrapper {
    padding-bottom: 28px;
}



.input-wrapper button {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 7px;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Sliding gradient effect */
.input-wrapper button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.5s ease;
}

/* Hover effects */
.input-wrapper button:hover::before {
    left: 100%;
}

.input-wrapper button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--dark-bg-text-color);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    padding-bottom: 28px;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    /* default checkbox hide */
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    /* blue border */
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.checkbox-wrapper input[type="checkbox"]:hover {
    border-color: #0056b3;
    /* hover effect */
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-content-wrapper h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Arial';
    letter-spacing: 1.1px;
    color: var(--primary-color);
    margin-bottom: 13px;
}

.contact-content-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #101010;
    margin-bottom: 15px;
}

.contact-content-wrapper p {
    color: #5d5d5d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 33px;
}

.contact-content-wrapper h6 {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Arimo';
}

.contact-list ul {
    padding: 0;
}

.contact-list ul li {
    list-style-type: none;
    margin-bottom: 25px;
    font-weight: 500;
    color: #101010;
}

.contact-list ul li span {
    margin-right: 15px;
    background: var(--primary-color);
    color: #fff;
    height: 30px;
    width: 30px;
    display: inline-flex;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

section.contact-us-sec .custom-gutter {
    --bs-gutter-x: 4rem !important;
}

section.newsletter-sec {
    padding: 46px 12px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

section.newsletter-sec h3 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Arial';
    letter-spacing: 1.1px;
}

section.newsletter-sec h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 60px;
}

.newsletter-form {
    text-align: right;
}

.newsletter-form input {
    width: 70%;
    padding: 24px 15px;
    border-radius: 7px;
    border: 0;
    font-size: 18px;
    font-weight: 500;
}

.newsletter-form {
    position: relative;
}

.newsletter-form-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.newsletter-form-btn button {
    background: #000;
    width: 80px;
    height: 75px;
    border: 0;
    color: #fff;
    border-radius: 0 7px 7px 0px;
}

.newsletter-form-btn button i {
    font-size: 24px;
}

/* Footer */
.footer-sec {
    padding: 64px 12px;
    background: url(../images/footer-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-row {
    display: flex;
    gap: 20px;
    padding-bottom: 33px;
    flex-wrap: wrap;
}

.social-icons {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icons span {
    margin-right: 5px;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

/* Social icon links */
.social-icons .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons span i {
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}

/* Social text styling */
.social-icons .social-text {
    margin-left: 10px;
    font-size: 20px;
    letter-spacing: 1px;
}

.social-icons .social-icon-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.social-icons .social-icon-link:hover i {
    color: var(--primary-color, #667eea);
}

.quick-links-wrapper h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 19px;
}

.quick-links-wrapper ul {
    padding: 0;
}

.quick-links-wrapper ul li {
    list-style-type: none;
    margin-bottom: 11px;
}

.quick-links-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.quick-links-wrapper ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--dark-bg-text-color);
    transition: width 0.3s ease;
}

.quick-links-wrapper ul li a:hover {
    color: var(--dark-bg-text-color);
}

.quick-links-wrapper ul li a:hover::after {
    width: 100%;
}

.links li {
    color: #fff;
    font-size: 16px;
}

.links li span {
    margin-right: 13px;
}

.footer-columns-one {
    flex: 0 0 35%;
}

.footer-columns-two {
    flex: 0 0 15%;
}

.footer-columns-three {
    flex: 0 0 15%;
}

.footer-columns-four {
    flex: 0 0 30%;
}

.footer-logo-wrapper {
    text-align: center;
}

.footer-bottom-wrapper {
    padding: 24px 5px;
    border-top: 1px solid #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.copyright-sec {
    font-size: 18px;
    color: #fff;
}

.footer-bottom-links ul {
    padding: 0;
}

.footer-bottom-links ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 21px;
}

.footer-bottom-links ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.inner-banner {
    background: url(../images/banner.webp) no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 441px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inner-banner h2 {
    font-size: 72px;
    color: #fff;
    font-weight: 700;
    line-height: 100px;
}

section.about-us-sec {
    padding: 100px 12px;
}

section.about-us-sec h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 18px;
}

section.about-us-sec p {
    color: #5d5d5d;
    font-size: 20px;
}

section.inner-contact-sec {
    padding: 100px 12px;
}

.inner-contact-form {}

.inner-contact-form .inner-input-wrapper input,
.inner-contact-form .inner-input-wrapper textarea {
    width: 100%;
    border: 0;
    background: #efefef;
    padding: 20px 22px;
    border-radius: 9px;
    font-size: 20px;
    color: #222222;
}

.inner-contact-form .inner-input-wrapper {
    padding-bottom: 24px;
}

.inner-contact-form .inner-input-wrapper button {
    padding: 12px 46px;
    background: var(--primary-color);
    border: 0;
    border-radius: 7px;
    color: #fff;
}

.inner-contact-form .inner-input-wrapper button i {
    margin-right: 10px;
}

section.inner-contact-sec {
    padding: 100px 12px;
}

.inner-contact-form {}

.inner-contact-form .inner-input-wrapper input,
.inner-contact-form .inner-input-wrapper textarea {
    width: 100%;
    border: 0;
    background: #efefef;
    padding: 20px 22px;
    border-radius: 0;
    font-size: 20px;
    color: #222222;
}

.inner-contact-form .inner-input-wrapper {
    padding-bottom: 24px;
}

.inner-contact-form .inner-input-wrapper button {
    padding: 12px 46px;
    background: var(--primary-color);
    border: 0;
    border-radius: 5px;
    color: #fff;
}

.inner-contact-form .inner-input-wrapper button i {
    margin-right: 10px;
}

.inner-contact-content-wrapper h3 {
    font-size: 21px;
    font-family: 'Arial';
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.1px;
    color: var(--primary-color);
}

.inner-contact-content-wrapper h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 63px;
    margin-bottom: 12px;
}

.inner-contact-content-wrapper p {
    color: #5d5d5d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    width: 80%;
}

section.reviews-sec {
    padding: 70px 12px;
}

.review-box {
    border-radius: 5px;
    padding: 16px 34px;
    box-shadow: 0 3.58px 17.9px 0 #00000014;
    min-height: 271px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.review-box:hover {
    border: 1px solid var(--primary-color);
    transform: translateY(-6px);
}

.review-cta {
    display: flex;
    justify-content: space-between;
}

.review-user {
    display: flex;
    gap: 16px;
    align-items: center;
}

.user-name p {
    font-size: 19px;
    margin: 0;
    font-family: 'Arimo';
    font-style: italic;
    font-weight: 500;
}

.user-name span {
    color: #7a7a7a;
    font-size: 17px;
    font-weight: 500;
}

.review-desc p {
    font-size: 19px;
    line-height: 29px;
    color: #7a7a7a;
}

section.latest-news-sec {
    padding: 70px 12px;
}

.latest-content {
    background: #f2f2f3;
    padding: 27px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    margin-top: -78px;
    position: relative;
    max-width: 92%;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

/* Overlay for gradient + blur */
.latest-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(to bottom,
            rgba(55, 48, 152, 0.308) 0%,
            rgba(55, 48, 152, 1) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.latest-box:hover .latest-content::before {
    opacity: 1;
}

.latest-box:hover .latest-content {
    color: #fff;
}

.latest-box:hover .latest-content p {
    color: #fff;
}


.latest-img img {
    width: 100%;
}

.latest-content h3 {
    font-size: 27px;
    font-weight: 700;
}

.latest-content p {
    font-size: 18px;
    font-weight: 500;
    color: #5d5d5d;
}

.service-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 23px 0;
}

.service-tabs {
    display: inline-flex;
    padding: 5px;
    border-radius: 50px;
    gap: 18px;
}

.service-tabs input {
    display: none;
}

/* Base Style (Same for Both) */
.service-tabs label {
    padding: 18px 48px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #555;
}

/* Embroidery default border */
.service-tabs .embroidery {
    border: 1px solid #000;
}

/* Active State */
#dtg:checked~label[for="dtg"],
#embroidery:checked~label[for="embroidery"] {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

/* Swap Style */
#embroidery:checked~label[for="dtg"],
#dtg:checked~label[for="embroidery"] {
    border: 1px solid #000;
    background: transparent;
    color: #555;
}



/* ===== Add to Cart Button ===== */

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 58px;
    border-radius: 10px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.add-to-cart-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Click Effect */
.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-details-title {
    border-bottom: 1px solid #eee;
    padding: 21px 0px;
}

.product-details-title h3 {
    font-size: 35px;
    font-weight: 700;
    color: #101010;
}

.product-details-title p {
    font-size: 16px;
    color: #B9BBBF;
    font-weight: 500;
    margin: 0;
}

.product-details-desc {
    padding: 22px 0;
}

.product-details-desc p {
    font-size: 20px;
    color: #5d5d5d;
}



.decoration-method-parent {
    display: flex;
    align-items: center;
    gap: 20px;
}

.decoration-method-parent h2 {
    font-size: 30px;
    font-weight: 700;
}

.decoration-method-parent h6 {
    color: #5d5d5d;
    font-weight: 700;
}

section.login-sec {
    padding: 70px 12px;
}


.login-content-wrapper {
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 12.38px 0 #00000040;
    padding: 40px;
    border-radius: 20px;
    min-height: 580px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.login-content-wrapper h3 {
    font-size: 70px;
    font-weight: 700;
    font-style: italic;
}

.login-content-wrapper form {
    padding: 32px 0;
}

.email-login-input-wrapper input {
    width: 100%;
    padding: 14px 12px;
    border-radius: 5px;
    border: 1px solid #101010;
}

.email-login-input-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.password-login-input-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.password-login-input-wrapper input {
    width: 100%;
    padding: 14px 12px;
    border-radius: 5px;
    border: 1px solid #101010;
}

.login-msg-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.login-eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.login-msg-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.login-eye-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.login-input-wrapper button {
    width: 100%;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 28px;
}

.login-input-wrapper p {
    color: #888;
    font-weight: 500;
    font-size: 18px;
}

.login-input-wrapper p a {
    color: #000;
    text-decoration: none;
}

.name-login-input-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.name-login-input-wrapper input {
    width: 100%;
    padding: 14px 12px;
    border-radius: 5px;
    border: 1px solid #101010;
}

.news-detail-sec {
    padding: 100px 12px;
}

.news-detail-content-wrapper h2 {
    font-size: 50px;
    color: #101010;
    font-weight: 700;
}

.news-detail-content-wrapper p {
    font-size: 20px;
    font-weight: 500;
    color: #5d5d5d;
    line-height: 33px;
}

.news-details-bottom p {
    font-size: 20px;
    color: #5d5d5d;
    font-weight: 500;
    line-height: 33px;
}

.news-details-bottom {
    padding: 50px 0;
}

.likes-icons {
    display: flex;
    gap: 23px;
    padding-bottom: 16px;
    padding-top: 26px;
}

.likes-icons i {
    font-size: 25px;
}

.likes-count {
    padding-bottom: 3px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 21px;
}

.caption {
    font-size: 20px;
    width: 40%;
    padding-bottom: 18px;
}

.comment-sec {
    display: flex;
    align-items: center;
}

.comment-box input {
    border: 0;
    margin-left: 16px;
    font-size: 18px;
}

section.shop-sec {
    padding: 100px 0;
}

section.shop-sec .shop-heading-wrapper h2 {
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 32px;
}

.filter-item {
    margin-bottom: 15px;
    /* background: #f8f9fa; */
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid #e9ecef; */
}

/* Label styling */
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    /* background: #f8f9fa; */
    transition: all 0.3s ease;
}

/* Hover effect */
.filter-header:hover {
    background: #e9ecef;
}

/* Left section */
.filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Checkbox styling */
.filter-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

/* Filter name */
.filter-name {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
}

.filter-header:hover .filter-name {
    color: #667eea;
}

/* Arrow icon */
.arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #6c757d;
}

/* Arrow rotation when open */
.filter-item.open .arrow-icon {
    transform: rotate(180deg);
    color: #667eea;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    /* By default hidden */
    background: white;
    border-top: 1px solid #dee2e6;
}

/* Show dropdown when open class is present */
.filter-item.open .dropdown-menu {
    display: block;
    /* Show when open */
}

/* Dropdown items */
.dropdown-item {
    padding: 12px 15px 12px 47px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    list-style: none;
    font-size: 14px;
    border-bottom: 1px solid #f1f3f5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #667eea;
    color: white;
    padding-left: 57px;
}

.categories-filter-sec {
    position: relative;
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-item.open .dropdown-menu {
    animation: slideDown 0.3s ease;
    width: 100%;
}



/* Shop Products CSS - Sirf classes change ki hain, styling bilkul waisi */
.shop-products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    /* featured wali gap same rakhi */
}

.shop-product-card {
    /* Koi extra styling nahi, featured wali card se inherit */
    padding: 15px 15px 23px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 5px 0 #00000014;
    position: relative;
    overflow: hidden;
}

.shop-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.shop-product-card:hover::before {
    transform: translateX(100%);
}

.shop-product-image {
    position: relative;
    margin-bottom: 20px;
}

.shop-action-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 9px;
}

.shop-action-icons>a {
    background: #fff;
    padding: 7px 11px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Icon inherit kare color */
.shop-action-icons>a i {
    transition: 0.3s ease;
}

/* Hover Effect - Bilkul featured wala */
.shop-action-icons>a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.shop-action-icons>a:hover i {
    color: #fff;
}

.shop-product-title h4 {
    /* Featured wali heading styling */
    font-size: 20px;
    font-weight: 700;
    color: inherit;
    margin: 0;
}

/* Load More Button - Yeh naya add kiya */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--primary-color);
    color: var(--btn-text);
    border: 2px solid var(--primary-color);
    padding: 12px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}





section.blog-sec {
    padding: 100px 12px;
}

.blog-heading-wrapper {
    text-align: center;
}

.blog-heading-wrapper h3 {
    font-size: 21px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Arial';
    letter-spacing: 1.1px;
}

.blog-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 60px;
    color: #101010;
}

.blog-heading-wrapper p {
    color: #5d5d5d;
    font-size: 18px;
    width: 40%;
    margin: 0 auto;
    margin-bottom: 52px;
}

.blog-box {
    padding: 34px;
    background: var(--dark-bg-text-color);
    border-radius: 30px;
    box-shadow: 0 13px 54px 0 #00000029;
    position: relative;
    min-height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}


.blog-box:hover {
    border: 2px solid var(--primary-color);
    box-shadow:
        0 0 20px rgba(14, 182, 189, 0.3),
        0 0 40px rgba(14, 182, 189, 0.2),
        0 0 60px rgba(14, 182, 189, 0.1);
    transform: translateY(-8px);
}

.blog-box h4 {
    font-size: 27px;
    margin-bottom: 23px;
}

.blog-box p {
    font-size: 18px;
    color: #5d5d5d;
}

.blog-box-wrapper .view-all-wrapper {
    padding: 0 0;
}


/* Cart Offcanvas Styling */
.offcanvas {
    border-left: 3px solid var(--primary-color, #667eea) !important;
}

.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    font-weight: 600;
    color: #333;
}

.offcanvas-title i {
    color: var(--primary-color, #667eea);
}

.offcanvas-body {
    padding: 2rem 1.5rem;
    background: #f8f9fa;
}

/* Bada Cart Icon */
.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.empty-cart-icon i {
    font-size: 48px;
    color: white;
}

/* Floating Animation for Cart Icon */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Text Styling */
.offcanvas-body h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offcanvas-body p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Search Modal */
/* Search Modal Styling - with parent class yrcartsearchmodal */
.yrcartsearchmodal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.yrcartsearchmodal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
    padding: 1.2rem 1.5rem;
}

.yrcartsearchmodal .modal-header .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.yrcartsearchmodal .modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    box-shadow: none;
}

.yrcartsearchmodal .modal-header .btn-close:focus {
    box-shadow: none;
}

.yrcartsearchmodal .modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

/* Search Form */
.yrcartsearchmodal .search-form {
    margin-bottom: 1rem;
}

.yrcartsearchmodal .search-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.yrcartsearchmodal .search-input-group:focus-within {
    border-color: var(--primary-color, #667eea);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.yrcartsearchmodal .search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.yrcartsearchmodal .search-submit-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: var(--primary-color, #667eea);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yrcartsearchmodal .search-submit-btn:hover {
    background: #5a6fd8;
    transform: scale(1.05);
}

.yrcartsearchmodal .search-submit-btn i {
    font-size: 1.2rem;
}

/* Quick Search Tags */
.yrcartsearchmodal .quick-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yrcartsearchmodal .quick-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.yrcartsearchmodal .quick-tag:hover {
    background: var(--primary-color, #667eea);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

/* Popular Categories */
.yrcartsearchmodal .popular-categories {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.yrcartsearchmodal .category-pill {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    font-size: 0.95rem;
    width: 100%;
}

.yrcartsearchmodal .category-pill:hover {
    background: var(--primary-color, #667eea);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.yrcartsearchmodal .category-pill i {
    color: var(--primary-color, #667eea);
    transition: all 0.3s ease;
}

.yrcartsearchmodal .category-pill:hover i {
    color: white;
}

/* Animation for modal */
.yrcartsearchmodal.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.yrcartsearchmodal.modal.show .modal-dialog {
    transform: scale(1);
}




section.privacy-policy-sec {
    padding: 70px 12px;
}

section.privacy-policy-sec h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
}

section.privacy-policy-sec p {
    color: #5d5d5d;
    font-weight: 500;
    font-size: 18px;
}

.privacy-box-wrapper {
    padding-bottom: 17px;
}




/* dashboard Css */


.dashboard-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Dashboard Header */
.dashboard-header {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h1 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.dashboard-header h1 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.welcome-text {
    color: var(--text-muted);
    font-size: 16px;
}

.welcome-text span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.sidebar-header {
    background: linear-gradient(135deg, #373098, #764ba2);
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.sidebar-header .user-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.sidebar-header .user-avatar i {
    font-size: 40px;
    color: white;
}

.sidebar-header h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.sidebar-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.sidebar-menu-item i {
    width: 25px;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.sidebar-menu-item span {
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu-item:hover {
    background: rgba(102, 126, 234, 0.05);
    border-left-color: var(--primary-color);
}

.sidebar-menu-item.active {
    background: rgba(102, 126, 234, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-menu-item.active i {
    color: var(--primary-color);
}

/* Main Content Area */
.dashboard-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

/* Content Sections */
/* .content-section {
    display: none;
} */

.content-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.section-header h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-info h3 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.primary-custom-btn {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.primary-custom-btn i {
    margin-right: 5px;
}

.primary-custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

.primary-custom-btn:hover::before {
    left: 100%;
}

.primary-custom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 10px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.wishlist-item {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-remove:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

.wishlist-image {
    height: 150px;
    overflow: hidden;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-details {
    padding: 15px;
}

.wishlist-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.wishlist-details .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead tr {
    background: var(--bg-light);
    border-radius: 10px;
}

.orders-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.orders-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.orders-table tr:hover td {
    background: rgba(102, 126, 234, 0.02);
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-processing {
    background: #fff3cd;
    color: #856404;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #cce5ff;
    color: #004085;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Community Alerts */
.alert-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.alert-item.unread {
    border-left-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon i {
    color: white;
    font-size: 18px;
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.alert-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.alert-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* Billing Details */
.billing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.billing-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.billing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-card h3 i {
    color: var(--primary-color);
}

.billing-info p {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-info p i {
    width: 20px;
    color: var(--primary-color);
}

.billing-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        margin: 15px auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .billing-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

section#auth {
    padding: 74px 0;
}

section.dashboard-section {
    padding: 112px 0;
}