* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: white;
    color: black;
}

.slider {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    display: none;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    /* padding: 10px; */
    cursor: pointer;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


h1 {
    font-size: 50px;
    line-height: 64px;
    color: #000;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #000;
}

h4 {
    font-size: 20px;
    color: #000;
}

h6 {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

p {
    font-size: 12px;
    color: #333;
    margin: 12px 0px 20px 0px;
}

.sectionP1 {
    padding: 40px 80px;
    background: white;
}

.sectionM1 {
    margin: 40px 0px;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #fff;
    background: #000;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
    border-radius: 6px;
}

button.normal:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    background: #333;
}

#normalBtn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 6px;
    transition: 0.3s;
}

#normalBtn:hover {
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #38bdf8;
    background-color: transparent;
    cursor: pointer;
    border: 1.5px solid #38bdf8;
    outline: none;
    transition: 0.2s;
    border-radius: 4px;
}

button.white:hover {
    background-color: rgba(56, 189, 248, 0.1);
    border-color: #0ea5e9;
    color: #0ea5e9;
}

body {
    width: 100%;
    background: linear-gradient(to bottom, #0f172a, #1a202c);
    color: #e2e8f0;
}

body.nav-padding {
    padding-top: 12vh; /* same as header height */
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12vh;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.header.sticky {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header .logo {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.header .logo:hover {
    transform: scale(1.05);
    color: #333;
}

.navbar {
    width: 100%;
}

.navbar ul {
    display: flex;
    align-items: center;
    width: 90%;
    padding-left: 20px;
    justify-content: flex-end;
}

.navbar li {
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

.navbar li a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.navbar li a:hover {
    color: #333;
    transform: translateY(-2px);
}

.navbar li a:hover,
.navbar li a.active {
    color: #333;
}

.navbar li a.active::after,
.navbar li a:hover::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -8px;
    left: 0;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

#bag {
    position: absolute;
    /* top: 25px; */
    right: 60px;
    z-index: 2000;
    transition: all 0.3s ease;
}

#bag a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.15));
    border-radius: 50%;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

#bag a:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(14, 165, 233, 0.3));
    border-color: rgba(56, 189, 248, 0.8);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

#bag svg {
    width: 24px;
    height: 24px;
    color: #000;
    transition: all 0.3s ease;
}

#bag a:hover svg {
    color: #0ea5e9;
    filter: brightness(1.2);
}

#user-icon {
    position: absolute;
    right: 115px;
    z-index: 2000;
    transition: all 0.3s ease;
}

#user-icon > a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.15));
    border-radius: 50%;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    color: #000;
}

#user-icon > a:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(14, 165, 233, 0.3));
    border-color: rgba(56, 189, 248, 0.8);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    color: #0ea5e9;
}

#user-icon i {
    font-size: 18px;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 150px;
    overflow: hidden;
    z-index: 2001;
}

.user-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: background 0.3s;
    text-align: left;
    width: 100%;
}

.user-dropdown a:hover {
    background: #f0f9ff;
    color: #0ea5e9;
}

#user-icon.logged-in:hover .user-dropdown {
    display: block;
}

.mobile-menu-link {
    display: none;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12vh 80px 0 80px;
    background: white;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
    text-transform: uppercase;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(180, 180, 180, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    color: #000;
    animation: slideInLeft 0.8s ease-out;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 4px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    font-weight: 700;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease-out 0.4s both;
    color: #000;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 19px;
    color: #333;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out 0.6s both;
    max-width: 400px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out 0.8s both;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
    transform-style: preserve-3d;
    transform: translateZ(50px);
    border: none;
    position: relative;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn:hover {
    transform: translateZ(50px) translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #333;
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-3d-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    perspective: 1000px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 10s infinite linear;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6);
}

.cube-face.front {
    transform: translateZ(150px);
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.25), rgba(180, 180, 180, 0.25));
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.2), rgba(220, 220, 220, 0.2));
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(150, 150, 150, 0.25), rgba(170, 170, 170, 0.25));
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.15), rgba(180, 180, 180, 0.15));
}

.cube-face.top {
    transform: rotateY(90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.3), rgba(180, 180, 180, 0.3));
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(150, 150, 150, 0.2), rgba(170, 170, 170, 0.2));
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.card-3d {
    width: 320px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 80px rgba(56, 189, 248, 0.25), 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    margin-left: 50px;
}

.card-content {
    text-align: center;
    transform: translateZ(60px)
}

.card-content span {
    display: block;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.card-content h2 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(to right, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content p {
    font-size: 24px;
    font-weight: 600;
    color: #0ea5e9;
    margin: floadetmoi;
}

.stack-3d {
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    animation: floatStack 6s ease-in-out infinite;
}

.stack-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.layer-back {
    transform: translateZ(-50px) rotate(-10deg);
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    opacity: 0.6;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-mid {
    transform: translateZ(0px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    color: #fff;
}

.layer-mid h2 {
    font-size: 80px;
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.layer-front {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(60px);
    background: linear-gradient(135deg, #fff, #e2e8f0);
    border-radius: 50%;
    color: #0ea5e9;
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.jersey-3d {
    position: relative;
    width: 320px;
    height: 450px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    animation: floatStack 6s ease-in-out infinite;
}

.jersey-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
}

.jersey-bg-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translateZ(-20px);
}

.jersey-3d img {
    width: 90%;
    height: auto;
    transform: translateZ(50px);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    border-radius: 10px;
}

.jersey-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    transform: translateZ(80px);
}

.jersey-info span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
    font-weight: 700;
}

.jersey-info h3 {
    font-size: 60px;
    line-height: 1;
    margin: 0;
    background: linear-gradient(to bottom, #0ea5e9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.jersey-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(100px) scale(0.5);
    padding: 12px 30px;
    background: #fff;
    color: #0ea5e9;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.jersey-3d:hover .jersey-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(120px) scale(1);
}

@keyframes floatStack {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .featureBox {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 10px 10px 54px rgba(56, 189, 248, 0.1);
    border: 1.5px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    margin: 15px 0;
    background: rgba(30, 41, 59, 0.6);
    transition: all 0.3s ease;
}

#feature .featureBox:hover {
    box-shadow: 20px 20px 30px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-5px);
}

#feature .featureBox img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .featureBox h6 {
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
    color: #38bdf8;
    display: inline-block;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

#feature .featureBox:nth-child(2) h6 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
}

#feature .featureBox:nth-child(3) h6 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
}

#feature .featureBox:nth-child(4) h6 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
}

#feature .featureBox:nth-child(5) h6 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
}

#feature .featureBox:nth-child(6) h6 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
}

#product1 h2 {
    font-weight: 800;
    font-size: 40px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

#product1 p {
    text-align: center;
    color: #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    word-spacing: 1px;
    font-weight: 500;
}

#product1 .Pcontainer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 24%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(56, 189, 248, 0.05);
    margin: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    /* background: rgba(30, 41, 59, 0.5); */
    backdrop-filter: blur(10px);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-10px);
}

#product1 .pro:hover img {
    transform: scale(1.05);
}

#product1 .pro .description {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description span {
    color: #000;
    font-size: 12px;
}

#product1 .pro .description h5 {
    padding-top: 7px;
    color: #000;
    font-size: 14px;
}

#product1 .pro .description h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #38bdf8;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)), url(2img/banner/discoundBack.jpg);
    background-size: cover;
    background-position: 0px -200px;
    width: 100%;
    height: 40vh;
    backdrop-filter: blur(5px);
}

#banner h4 {
    color: #cbd5e1;
    font-size: 16px;
    letter-spacing: 1px;
}

#banner h2 {
    color: #e2e8f0;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #38bdf8;
    font-weight: 800;
}

#banner button {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#banner button a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

#banner button:hover {
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    transform: translateY(-3px);
}

#subBanner a {
    text-decoration: none;
}

#subBanner .bannerBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: none;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    width: 580px;
    height: 50vh;
    background-size: cover;
    padding: 30px;
    background-position: center;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

#subBanner .bannerBox:hover {
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.6);
}

#subBanner .bannerBox2 {
    background-image: none;
}

#subBanner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#subBanner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#subBanner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#subBanner span {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#subBanner .bannerBox h4,
#subBanner .bannerBox h2,
#subBanner .bannerBox span,
#subBanner .bannerBox a {
    transform: translateZ(30px);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.banner-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.circle-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transform: translateZ(20px);
}

.square-glow {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), transparent);
    border-radius: 20px;
    bottom: 20px;
    right: 20px;
    transform: translateZ(40px) rotate(15deg);
}

#subBanner .bannerBox:hover button {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: 1px solid rgba(56, 189, 248, 0.8);
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .bannerBox {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7)), url(2img/banner/b1.jpg);
    width: 30%;
    height: 40vh;
    background-size: cover;
    padding: 20px;
    background-position: start;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

#banner3 .bannerBox-2 {
    display: none;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7)), url(2img/banner/b2.jpg);
}

#banner3 .bannerBox-3 {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7)), url(2img/banner/b3.jpg);
    display: none;
}

#banner3 h2 {
    color: #e2e8f0;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

#email {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /* background-image: url(img/banner/b14.png); */
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    margin: 40px 80px;
    border-radius: 20px;
}

#email h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#email p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#email p span {
    color: #38bdf8;
}

#email .form {
    display: flex;
    width: 40%;
}

#email input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: 6px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(30, 41, 59, 0.8);
    color: #e2e8f0;
    transition: all 0.3s ease;
}

#email input::placeholder {
    color: rgba(226, 232, 240, 0.5);
}

#email input:focus {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

#email button {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#email button:hover {
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

/* --------------------Footer----------------- */

.footer {
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    color: #000;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1.5px solid rgba(56, 189, 248, 0.2);
}

.footer-card p {
    color: #000;
}

.footer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.1);
}

.footer-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #000;
}

.footer-text {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    text-decoration-line: none;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.15);
}

.social-icons a:hover {
    transform: scale(1.15);
    background: rgba(56, 189, 248, 0.3);
    border-color: rgba(56, 189, 248, 0.7);
}

.whatsapp {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp:hover {
    background: rgba(37, 211, 102, 0.4);
    border-color: rgba(37, 211, 102, 0.7);
    color: #25D366;
}

.instagram {
    background: rgba(245, 133, 41, 0.25);
    border: 1.5px solid rgba(245, 133, 41, 0.5);
}

.instagram:hover {
    background: rgba(245, 133, 41, 0.4);
    border-color: rgba(245, 133, 41, 0.7);
}

.contact-info p {
    font-size: 15px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.7;
}

/* ---------------shop Page------------------ */

#pageHeader {
    background-image: url(2img/banner/shopHero.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#pageHeader h2,
#pageHeader p {
    color: #fff;
}

#pageHeader p {
    font-size: 16px;
}

#pageSlide {
    text-align: center;
}

#pageSlide a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pageSlide a i {
    font-size: 16px;
    font-weight: 600;
}

#proDetails {
    display: flex;
    margin-top: 70px;
}

#proDetails .singleProImage {
    width: 50%;
    margin-right: 50px;
}

.smallImageGroup {
    display: flex;
    justify-content: space-between;
}

.smallImageCol {
    flex-basis: 24%;
    cursor: pointer;
    /* border: 1.5px solid rgba(56, 189, 248, 0.3); */
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.smallImageCol:hover {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.15);
}

#proDetails .singleProDetails {
    width: 40%;
    padding-top: 30px;
}

#proDetails .singleProDetails h4 {
    /* padding: 10px 0 20px 0; */
    color: #000;
}

#proDetails .singleProDetails h2 {
    font-size: 26px;
    color: #000;
}

#product-description{
    color: #000;
}

#proDetails .singleProDetails select {
    display: block;
    /* padding: 10px 15px; */
    margin-bottom: 10px;
    /* border: 1.5px solid rgba(56, 189, 248, 0.4); */
    border-radius: 6px;
    background: rgba(30, 41, 59, 0.8);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

#proDetails .singleProDetails select:focus {
    outline: none;
    /* border-color: rgba(56, 189, 248, 0.8); */
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

#proDetails .singleProDetails input {
    width: 50px;
    height: 47px;
    padding: 5px 10px;
    font-size: 16px;
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    border-radius: 4px;
    background: rgba(30, 41, 59, 0.8);
    color: #000;
    outline: none;
    transition: all 0.3s ease;
}

#proDetails .singleProDetails input:focus {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

#proDetails .singleProDetails button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

#proDetails .singleProDetails input:focus {
    outline: none;
}

#proDetails .singleProDetails button {
    width: 50%;
    background-color: #088178;
    color: #fff;
}

#proDetails .singleProDetails #add-to-cart-btn {
    background-color: #000;
    margin-bottom: 9px;
    color: #fff;
}

#proDetails .singleProDetails span {
    line-height: 25px;
}

/* -----------Cart----------- */

#cart {
    margin-top: 140px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-left: 80px;
    margin-right: 80px;
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#cart table td:nth-child(1) {
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead {
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td {
    padding-top: 15px;
}

#cart table tbody td {
    font-size: 13px;
}

#cart table thead {
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-left: none;
    border-right: none;
    background: rgba(56, 189, 248, 0.1);
}

#cart table thead td {
    color: #fff;
    font-weight: 700;
    padding: 18px 0;
}

#cart table tbody td {
    color: #cbd5e1;
    font-size: 14px;
}

#cart table tbody tr td:nth-child(1) a {
    color: #ef4444;
    font-size: 20px;
    transition: 0.3s;
}

#cart table tbody tr td:nth-child(1) a:hover {
    color: #dc2626;
    transform: scale(1.2);
}

#cart table input {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #fff;
    border-radius: 5px;
}

#subTotal,
#cart-subtotal {
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 40px;
}

#subTotal tr td,
#cart-subtotal tr td {
    padding: 15px;
    color: #cbd5e1;
}

#cart-subtotal table td strong {
    color: #fff;
    font-size: 18px;
}

.btn {
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    border-left: none;
    border-right: none;
    padding-top: 10px;
    margin-bottom: 40px;
}

.btn button, #whatsapp-btn {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.btn button:hover, #whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 30px 0;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #000;
    color: #fff;
}

.filter-toggle-box {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    margin: 0 auto 20px;
    width: fit-content;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-toggle-box:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Contact Page Styles */
#contact-details {
    display: flex;
    justify-content: center;
}

.contact-box {
    display: flex;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-sec, .contact-form-sec {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-sec h3, .contact-form-sec h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #000;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 16px;
}

.info-item i {
    font-size: 22px;
    margin-right: 20px;
    color: #38bdf8;
}

.contact-form-sec input, .contact-form-sec textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    outline: none;
    background: #f8f9fa;
}

.contact-form-sec textarea {
    resize: none;
}

.contact-socials {
    margin-top: 30px;
}

/* Search Container */
#search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 0;
}

#search-input {
    padding: 15px 20px;
    border: 1px solid #e2e9e1;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    width: 60%;
    max-width: 500px;
    background: #f5f5f5;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#search-input:focus {
    background: #fff;
    border-color: #088178;
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.15);
}

#sort-select {
    padding: 15px 20px;
    border: 1px solid #e2e9e1;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background: #f5f5f5;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#sort-select:focus {
    background: #fff;
    border-color: #088178;
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.15);
}

/* Profile Page */
#profile {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 150px; /* Account for fixed header */
    gap: 40px;
}

#profile-details {
    width: 25%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e9e1;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#profile-details img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

#profile-orders {
    width: 70%;
}

#orders-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

#orders-table th, #orders-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e9e1;
    text-align: left;
}

#orders-table th {
    background: #088178;
    color: #fff;
}