* { margin: 0;padding: 0;box-sizing: border-box;}
body{
height: 4700x;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/*                                                    first                                          */
.container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
a {
    text-decoration: none;
    color:black;
    font-size: 14px;
}
/* --- 1. Top Bar --- */
.top-bar {
    padding: 5px 0;
}
.top-bar .left-links a, .top-bar .right-links a {
    margin-right: -5px;
    color: rgb(56, 56, 56);
}
.top-bar a {
    position: relative;
    display: inline-block;
    padding: 5px 10px; 
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.6s ease;
}
.top-bar a::before,
.top-bar a::after {
    content: "";
    position: absolute;
    width: 3px; 
    height: 100%; 
    background-color:red; 
    opacity: 0;
    transition: all 0.6s ; 
}
.top-bar a::before {
    left: 0;
    bottom: -15px;
}
.top-bar a::after {
    right: 0;
    top: -15px; 
}
.top-bar a:hover::before {
    bottom: 0;
    opacity: 1;
}
.top-bar a:hover::after {
    top: 0;
    opacity: 1;
}
.right-links {
    display: flex;
    align-items: center;
}
.social-icons a {
    position: relative;
    display: inline-block;
    padding: 0 15px; 
    color: #333; 
    font-size: 14px;
    text-decoration: none;
}
.social-icons a i {
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}
.social-icons a:hover i {
    color: red; 
    transform: rotateY(180deg); 
}
.social-icons a::before,
.social-icons a::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #e41e1e;
    opacity: 0;
    transition: all 0.6s ease;
}
.social-icons a::before {
    left: 0;
    bottom: -20px;
}
.social-icons a::after {
    right: 0;
    top: -20px;
}
.social-icons a:hover::before {
    bottom: 0;
    opacity: 1;
}
.social-icons a:hover::after {
    top: 0;
    opacity: 1;
}
.line{
background-color: rgb(138, 135, 135);
height: 1px;
width: 100%;
}
/* --- 2. Main Header --- */
.main-header {
    padding: 10px 0;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
}
.logo img {
    width: 80px;
    margin-right: -10px;
}
.kkkk{
    display: inline-block;
}
.kkk{
    color: rgb(103, 102, 102);
}
.nav-menu ul {
    display: flex;
    list-style: none;
}
.header-actions {
    display: flex;
    gap: 20px;
    font-size: 20px;
    align-items: center;
}
.cart-icon {
    position: relative;
}
.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}
.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    font-size: 18px;
}
.nav-menu ul li a:hover {
    color: red;
}
.nav-menu ul li a::before,
.nav-menu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 2px solid transparent; 
    transition:  0.5s; 
}
.nav-menu ul li a::before {
    top: 0;
    left: 0;
}
.nav-menu ul li a::after {
    bottom: 0;
    right: 0;
}
.nav-menu ul li a:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: red; 
    border-left-color: red;
}
.nav-menu ul li a:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: red; 
    border-right-color: red;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
    padding: 25px 30px;
    list-style: none;
    min-width: 350px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0);
    transition: all 0.9s ease;
    z-index: 999;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
   transform: translateX(-50%) scale(1);
}
.nav-menu ul li a.underlined-link {
    border-bottom: 2px solid red ;
    padding-bottom: 5px;
}
.dropdown-menu li a::before,
.dropdown-menu li a::after {
    display: none ; 
}
.dropdown-menu li a {
    border: none ; 
    transition: all 0.4s ease;
    display: block;
    padding: 10px 15px;
    color: #333;
}
.dropdown-menu li a:hover {
    color: red ;
    transform: scale(1.1) translateX(10px); 
    background: rgba(255, 0, 0, 0.05); 
}
.ll {
    list-style: none;
    color:black;
    letter-spacing: 2px;
    margin-bottom: 10px; 
    pointer-events: none; 
}
.dropdown-menu li:not(.menu-title) a:hover {
    color: red ;
    transform: scale(1.1); 
    background: transparent;
}
.header-actions i:hover{
    color: red;
}
.cart-icon .badge {
    display: inline-block;
    transition:  0.5s ; 
}
.cart-icon:hover .badge {
    transform: translateY(-10px) scale(1.3);
}
/* --- 3. Promo Bar --- */
.promo-bar {
    background-color:#ff4141;
    color: white;
    text-align: center;
    padding: 8px 0;
}
.promo-bar p {
    font-size: 16px;
    margin: 0;
}
.promo-bar a {
    font-size: 17px;
    color: white;
    border-bottom: 1px solid white;
    margin-left: 5px;
    display: inline-block; 
    transition: all 0.2s ease-out;
}
.promo-bar p a:hover {
    letter-spacing: 2px;
    color: a78e46; 
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
.hero-section {
    height: 90vh;
    width: 100%;
    background-image: url(../photo/Gemini_Generated_Image_pmh45pmh45pmh45p.png); 
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0px; 
    padding-top: 0px;
}
.hero-container {
    width: 75%;
   padding-top: 50px;
   padding-left:0px ;
    margin-left: 120px;
}
.hero-content {
    max-width: 500px;
    padding-left: 20px;
    text-align: center;
}
.hero-sub-title {
    font-family: 'Great Vibes', cursive;
    color: #ff4141;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 700;
    color:black;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 20px;
    color: rgb(112, 109, 109);
    margin-bottom: 40px;
}
.hero-btn {
    display: inline-block;
    background-color:#ff4141;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}
.hero-btn:hover {
    background-color: white;
    color: #ff4141;
    border: 2px solid black ;
    transform: translateY(-3px); 
}
/*                                                                                                             second                                                                        */
.fashion-categories {
    display: flex;
    gap: 50px;
    padding: 50px;
    justify-content: center;
}
.category-card {
    position: relative;
    width: 400px;
    height: 450px;
    overflow: hidden; 
}
.card-img {
    width: 100%;
    height: 100%;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.99s ease;
}
.category-card:hover .card-img img {
    transform: scale(1.1); 
}
.card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
    transform: translateY(15px); 
    transition: transform 0.8s ;
}
.category-card:hover .card-text h3 {
    transform: translateY(-5px); 
}
.shop-now {
    color: #a78e46;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #a78e46;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px); 
    transition: all 0.8s ;
    cursor: pointer;
}
.category-card:hover .shop-now {
    opacity: 1;
    transform: translateY(0); 
}
/*                                                                                        third                                                                                                   */
.trending-section {
    width: 100%;
    padding: 50px 50px;
}
.trending-header {
    display: flex;
    justify-content: space-between;
    width: 100%; 
    margin: 0 auto;
    border-bottom: 1px solid #e0e0e0; 
    padding-bottom: 10px; 
}
.trending-header h2 {
    font-size: 33px;
    margin: 0;
    color: #1a1a1a;
    line-height: 1;
}
.trending-tabs {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.trending-tabs li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.trending-tabs li a.active {
    color: #ff0000;
}
.trending-tabs li a.active::after {
    content: "";
    position: absolute;
    bottom: -12px; 
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ff0000;
}
/* /// */
.page1 {
    position: relative;
    padding: 50px 0;
    width: 100%;
}
.slider-controls {
    position: absolute;
    top: 40%; 
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
}
.prev-btn, .next-btn {
    pointer-events: auto; 
    background: black;
    color: white;
    border: 2px solid black;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.prev-btn:hover, .next-btn:hover {
    background: white;
    color:black;
}
.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    perspective: 1000px;
}
.card {
    width: 300px;
    text-align: center;
    background: transparent;
}
.card-inner {
    position: relative;
    width: 100%;
    height: 400px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.card:hover .card-inner {
    transform: rotateY(180deg);
}
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}
.front img, .back-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.back {
    transform: rotateY(180deg);
}
.back-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.icons {
    background: white;
    display: flex;
    overflow: hidden;
    padding: 0;
    position: absolute; 
    bottom: 20px;       
    opacity: 0;         
    transform: translateY(30px); 
    transition: all 0.8s ease-out; 
}
.card:hover .icons {
    opacity: 1;          
    transform: translateY(0); 
}
.icons i {
    color: black;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons i:hover {
    background-color: red;
    color: white;
}
.product-info {
    padding: 15px 0;
    transition: color 0.3s;
}
.card:hover .product-title {
    color: #ff0000;
}
.product-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 400;
    transition: 0.3s;
}
.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.current-price {
    font-weight: bold;
    color: #333;
}
.old-price {
    color: #999;
    text-decoration: line-through;
}
/*                                                    fourth                                        */
.testimonials {
    background-color: #f0faff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    width: 100%;
    border-top: 1px solid #e0e0e0; 
    border-bottom: 1px solid #e0e0e0;
    margin-top: 90px;
}
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}
.section-title {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #777; 
    margin-bottom: 40px;
}
.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.customer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%; 
    object-fit: cover;
}
.customer-details {
    text-align: left;
}
.customer-name {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 0;
}
.customer-job {
    font-size: 14px;
    color: #888;
    margin: 0;
}
/*                                                       five                                       */
.main-cards-container{
    margin-top: 100px;
    text-align: center;
    font-size: 35px;
}
.cards-container {
    padding: 50px 50px;
    background-color: #ffffff;
}
.card-inner-slide {
    position: relative;
    width: 100%;
    height: 420px; 
    overflow: hidden; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.front-img, .back-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.front-img img, .back-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.back-slide {
    top: -100%; 
    z-index: 2;
    transition: top 0.8s ;
}

.card.slide-down-effect:hover .back-slide {
    top: 0;
}
/*                                                       six                                      */
.latest-news {
    background-color: #eaf4f5;
    padding: 80px 0;
    text-align: center;
   border-top: 2px solid #c2bfbf; 
    border-bottom: 2px solid #c2bfbf;
}
.news-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: bold;
}
.news-container {
    
    width: 85%;
    margin: auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}
.news-card {
    width: 30%;
    text-align: left;
    transition: 0.3s;
}
.news-card img {
    width: 100%;
    height: 300px;
}
.news-category {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: gray;
}
.news-card h2 {
    font-size: 20px;
    margin: 10px 0;
    transition: 0.3s;
}
.news-card h2.active-news {
    color: red;
}
.news-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}
.news-card a {
    text-decoration: underline;
    color: black;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: 0.5s;
}
.news-card a:hover {
    transform: scale(1.1);
    color: red;
}
.news-card:hover h2 {
    color: red;
}
.news-card:hover {
    transform: translateY(-3px);
}
.news-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}
.news-card img:hover {
    transform: scale(1.1);
}
/*                                                       seven                                    */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background: #f3f3f3;
    text-align: center;
}

.feature-box {
    width: 22%;
}
.icon {
    position: relative;
    height: 50px;
    overflow: hidden;
}
.icon-top {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 40px;
    color: #aaa;
    transition: 0.3s;
}
.icon-bottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50px);
    font-size: 40px;
    color: #222;
    transition: 0.3s;
}
.feature-box:hover .icon-top {
    transform: translate(-50%, -50px);
}
.feature-box:hover .icon-bottom {
    transform: translate(-50%, 0);
}
.feature-box h2 {
    margin: 15px 0 5px;
    font-size: 18px;
}
.feature-box p {
    color: #777;
    font-size: 14px;
}
/* ////////////////// FOOTER ////////////////// */
.footer{
    background: #0f0f0f;
    color: white;
    padding: 25px 80px 20px;
}
.subscribe{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.sub-text h2{
    font-size: 18px;
    margin-bottom: 10px;
}
.sub-text p{
    color: #cfcfcf;
    font-size: 16px;
}
.sub-input{
    display: flex;
    align-items: center;
}
.sub-input input{
    width: 350px;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 15px;
    font-size: 16px;
    margin-right: 10px;
}
.sub-input button{
    height: 40px;
    padding: 0 35px;
    border: none;
    background: red;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.sub-input button:hover{
     transform: scale(1.1);
}
.social{
    display: flex;
    gap: 20px;
}
.social i{
    font-size: 20px;
    color: #777;
    cursor: pointer;
    transition: 0.4s;
}
.social i:hover{
    color: red;
    transform: scale(1.2);
}
.line-footer{
    width: 100%;
    height: 2px;
    background: #444;
    margin: 20px 0;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-footer{
    width: 350px;
}
.logo-footer{
    display: flex;
   align-items: center;
    gap: -5px;
}
.logo-footer img{
    width: 70px;
}
.logo-footer h2{
    font-size: 35px;
    font-weight: bold;
}
.logo-footer span{
    color: #999;
    font-weight: normal;
}
.links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.links h2{
    margin-bottom: 10px;
    font-size: 20px;
}
.links a {
    color: gray;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.links a:hover {
    text-decoration: underline;
     transform: scale(1.1);
}
.copy{
    text-align: center;
    margin-top: 20px;
}
.copy p{
    color: #cfcfcf;
    font-size: 16px;
}
.heart{
    color: red;
    display: inline-block;
    animation: change 0.9s infinite;
}
@keyframes change{
    0%{
        transform: scale(1);
        opacity: 0.3;
        text-shadow: none;
    }
    50%{
        transform: scale(1.2);
        opacity: 1;
        text-shadow: 0 0 10px red, 0 0 20px red;
    }
    100%{
        transform: scale(1);
        opacity: 0.3;
        text-shadow: none;
    }
}
.copy span{
    color: red;
}

