/* Reset styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    border-radius: 0 !important;
    margin: 0;
}


        .discount-btn{
            background-color: black;
            color: white;
        }
        .discount-btn:hover{
            background-color: rgb(34, 34, 34);
            color: white;
        }
        .newsletter {
            background-color: white;
            padding: 20px;
            text-align: center;
            margin: 40px 0;
        }
        .newsletter h3 {
            margin-bottom: 15px;
            color: black;
        }
        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .newsletter-form input[type="email"] {
            padding: 10px;
            width: 300px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .newsletter-form button {
            padding: 10px 20px;
            background-color: black;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .newsletter-form button:hover {
            background-color: #0d133c;
        }

        .submessagehidden {
            color: green;
            margin-top: 10px;
            display: none;
        }
        


@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", sans-serif;
    background-color: #fafafa;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/* Custom styles */
.nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav form {
    flex: 1;
    margin: 0 1rem;
}

.nav form input {
    padding: 0.75rem 1.5rem;
    border: none; 
    border-bottom: 2px solid #e0e0e0; 
    width: 100%;
    max-width: 600px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    background-color: transparent;
}

.nav form input:focus {
    border-bottom-color: black; 
    box-shadow: none;
}

.nav form input::placeholder {
    color: #999;
}


.nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}


.nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px; /* space for underline */
}

/* Create the underline */
.nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

/* Animate underline on hover */
.nav ul li a:hover::after {
    width: 100%;
}

.nav ul li a:hover {
    color: #333;
}


/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-section {
    margin-bottom: 1.5rem;
}

.mobile-menu-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
    position: relative;
    background: transparent;
}

.mobile-menu ul li a:hover {
    background: black;
    color: white;
    transform: translateX(4px);
}

.mobile-menu ul li a.active {
    background: black;
    color: white;
    font-weight: 600;
}

.mobile-menu ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #c5cae9;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.25s ease;
}

.mobile-menu ul li a:hover::before,
.mobile-menu ul li a.active::before {
    background-color: black;
    transform: scale(1.2);
}

.mobile-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e1e5e9;
}

.mobile-icons a {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mobile-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mobile-icons a:active {
    transform: translateY(-2px);
}

.mobile-icons img {
    filter: opacity(0.75);
    transition: all 0.25s ease;
    margin-bottom: 0.25rem;
}

.mobile-icons a:hover img {
    filter: opacity(1);
    transform: scale(1.1);
}

.mobile-icons .icon-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin-top: 0.25rem;
}

.mobile-icons a:hover .icon-label {
    color: black;
}

/* Mobile Search Toggle Button */
.mobile-search-toggle {
    display: none;
    padding: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-search-toggle.active {
    background-color: black;
}

.mobile-search-toggle.active img {
    filter: brightness(0) invert(1);
}

/* Mobile Search Bar */
.mobile-search-bar {
    position: fixed;
    top: var(--nav-height, 80px); /* Will be set dynamically */
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.mobile-search-bar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-search-bar form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.mobile-search-bar input {
    flex: 1;
    transition: border-color 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    width: 100%;
    max-width: 600px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-search-bar input:focus {
    border-color: black;
}

.close-search {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.close-search:hover {
    background-color: #f0f0f0;
}

/* Mobile Language Selector */
.mobile-language-selector {
    padding: 0 1rem;
}

.mobile-language-selector select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: white;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.mobile-language-selector select:focus {
    border-color: black;
}

.header {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    background: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}


.left li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Create underline effect */
.left li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* underline sits right under text */
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}



/* Animate underline on hover */
.left li a:hover::after {
    width: 100%;
}

/* Optional: keep active link underlined */
.left li a.active::after {
    width: 100%;
}

.right {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.right select {
    padding: 0.5rem 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.right select:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.right select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.right li {
    padding: 10px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.right li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.right li img {
    filter: opacity(0.7);
    transition: filter 0.2s ease;
}

.right li:hover img {
    filter: opacity(1);
}

/* Responsive Design */
@media (max-width: 1140px) {
    .nav {
        flex-direction: row !important;
        gap: 1rem;
        padding: 1rem;
    }

    .nav ul {
        display: none;
    }

    .logo{
        margin-right: auto;
        order: 1;
    }

    .nav form {
        display: none; /* Hide desktop search */
    }

    .mobile-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }

    .mobile-menu-section ul{
        display: block;
    }

    .hamburger {
        display: flex;
        margin-right: auto;
    }

    .header {
        display: none; /* Hide entire header on small screens */
    }

    .right {
        gap: 2rem;
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
  .right {
    gap: 2rem !important;
  }
}


@media (max-width: 480px) {
    .nav {
        padding: 0.75rem;
    }

    .logo img {
        width: 80px;
    }

    .nav form input {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .header {
        padding: 0.75rem;
    }

    .right li {
        padding: 8px;
    }

    .right li img {
        width: 18px;
        height: 18px;
    }

    .right select {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

.marquee-container {
    background-color: black;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 45s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    margin-right: 4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 0 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Marquee Responsive Design */
@media (max-width: 768px) {
    .marquee-container {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }
    
    .marquee-content {
        animation: marquee 35s linear infinite;
    }
    
    .marquee-content span {
        margin-right: 3rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .marquee-container {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .marquee-content {
        animation: marquee 25s linear infinite;
    }
    
    .marquee-content span {
        margin-right: 2rem;
        padding: 0 0.25rem;
    }
}


/* Additional carousel styling */
.main-content {
    margin-top: 0;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    padding: 1rem;
    border-radius: 10px;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators .active {
    background-color: black;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav form {
        order: -1;
        width: 100%;
        margin: 0;
    }

    .nav form input {
        max-width: none;
    }

    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .left {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .right {
        gap: 0.5rem;
    }

    .right select {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.5rem;
    }

    .left {
        gap: 0.5rem;
    }

    .left li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .right li {
        padding: 8px;
    }
}







.categories {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.categories h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
}

.categories .view-more {
    padding: 0.5rem 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    padding: .5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cloth {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: stretch;
    gap: 2rem;
}
.cloth a{
    text-decoration: none;
    color:  black;
}

.tops,
.dresses {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tops:hover,
.dresses:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tops-img,
.dresses-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.tops-img img,
.dresses-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tops:hover .tops-img img,
.dresses:hover .dresses-img img {
    transform: scale(1.05);
}

.tops-text,
.dresses-text {
    padding: 1.5rem;
    text-align: center;
    background-color: white;
}

.tops-text h3,
.dresses-text h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Mobile responsiveness for clothing section */
@media (max-width: 768px) {
    .cloth {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .cloth {
        padding: 1rem;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
    }

    .categories h1{
        font-size: 1.3rem;
    }

    .dresses,
    .tops {
        width: 150px;
    }

    .tops-text,
    .dresses-text {
        padding: 1rem;
    }
}


.product-card-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    justify-content: space-evenly;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 360px;
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;

    transform: scale(0.8);
    color: rgb(165, 165, 165);
}

.product-card:hover .heart-icon {
    
    transform: scale(1);
}

.heart-icon:hover {
    color: black;
    transform: scale(1.1);
}

.heart-icon:hover svg {
    stroke: white;
}

.heart-icon svg {
    width: 20px;
    height: 20px;
    stroke: black;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.product-info {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.product-category {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-prices {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: black;
}

.original-price {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discount {
    font-size: 0.85rem;
    font-weight: 600;
    color: green;
    background-color: #d5f4e6;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.add-to-cart-btn {
    background: black;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 29, 106, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(22, 29, 106, 0.3);
}

/* Product Cards Responsive Design */
@media (max-width: 1200px) {
    .product-card-container {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .product-card {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 1000px) {
    .product-card {
        width: 380px;
        min-width: 280px;
    }
}

@media (max-width: 816px) {
    .product-card {
        width: 340px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .product-card-container {
        gap: 1.5rem;
        padding: 1.5rem 0.75rem;
        margin: 2rem auto;
    }

    .product-card {
        width: 280px;
        min-width: 250px;
    }

    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.2rem;
    }

    .heart-icon {
        opacity: 1;
        transform: scale(1);
        top: 12px;
        right: 12px;
        padding: 8px;
    }
}

@media (max-width: 610px) {
    .product-card-container {
        gap: 1rem;
        padding: 1rem 0.5rem;
        justify-content: center;
    }

    .product-card {
        width: 230px;
        min-width: 140px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .product-category {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .product-prices {
        gap: 0.5rem;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .current-price {
        font-size: 1rem;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .discount {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .add-to-cart-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-card-container {
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
        min-width: auto;
    }

    .product-image {
        height: 240px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-category {
        font-size: 0.85rem;
    }

    .product-prices {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .current-price {
        font-size: 1.1rem;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .discount {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .add-to-cart-btn {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }
}


.info-container {
    background: black;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-container .icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-item:hover .icon {
    transform: scale(1.1);
}

.info-container .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0.5rem 0;
}

.info-container .description {
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section Styles */
.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 3rem auto;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    padding: 1.5rem;
    background-color: black;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-container .icon {
    font-size: 1.8rem;
    color: white;
    background-color:black;
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .icon {
    background-color: black;
    color: white;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.detail {
    font-size: 0.95rem;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Info and Contact Sections */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
        padding: 2rem 1rem;
        border-radius: 0;
    }

    .info-item {
        width: 100%;
        max-width: 300px;
    }

    .info-container .icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }

    .info-container .title {
        font-size: 1.1rem;
    }

    .info-container .description {
        font-size: 0.9rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-container .icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .info-container {
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        border-radius: 10px;
    }

    .info-container .icon {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
        padding: 0.75rem;
    }

    .info-container .title {
        font-size: 1rem;
    }

    .info-container .description {
        font-size: 0.85rem;
    }

    .contact-container {
        margin: 1.5rem auto;
        padding: 1rem;
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .contact-container .icon {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .label {
        font-size: 1rem;
    }

    .detail {
        font-size: 0.9rem;
    }
}













.footer {
    background-color: black;
    color: white;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-left {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: inline-block;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: black;
    transform: translateY(-2px);
}

.footer-social img {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-right {
    flex: 2;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 150px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: black;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    background-color: black;
}

.footer-bottom p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

/* Footer Responsive Design */
@media (max-width: 968px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .footer-left {
        max-width: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-right {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 1.5rem;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-right {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1rem;
    }

    .footer-right {
        gap: 1rem;
    }

    .footer-section {
        min-width: auto;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-social a {
        padding: 0.4rem;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}


/* LOG IN CSS */
.login-form form{
    display: flex;
    justify-content: center;
    align-items: center;
}


















/* cart */
            .main {
                padding: 40px 0;
                background: #f8f9fa;
                font-family: 'Poppins', Arial, sans-serif;
            }
            .cart-containerAll{
                margin: 0 auto;
                padding: 0 16px;
                display: flex;
                flex-direction: row;
                width: 85%;
            }
            .cart-container {
                width: 50%;
                margin: 0 auto;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 2px 12px rgba(22,29,106,0.08);
                padding: 32px 24px;
            }
            .cart-item {
                display: flex;
                align-items: center;
                border-bottom: 1px solid #eaeaea;
                padding-bottom: 24px;
                margin-bottom: 24px;
                transition: opacity 0.3s;
            }
            .cart-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }
            .cart-item img {
                width: 120px;
                height: 120px;
                object-fit: cover;
                border-radius: 8px;
                margin-right: 24px;
                border: 1px solid #eaeaea;
                box-shadow: 0 1px 6px rgba(22,29,106,0.06);
            }
            .item-details {
                flex: 1;
            }
            .item-details h2 {
                font-size: 1.2rem;
                color: black;
                margin-bottom: 8px;
            }
            .item-details p {
                margin-bottom: 8px;
                color: #444;
            }
            .quantity-btn {
                background: black;
                color: #fff;
                border: none;
                border-radius: 4px;
                width: 28px;
                height: 28px;
                font-size: 1rem;
                cursor: pointer;
                margin: 0 4px;
                transition: background 0.2s;
                box-shadow: 0 1px 4px rgba(22,29,106,0.08);
            }
            .quantity-btn:hover {
                background: #2b348a;
            }
            .quantity {
                display: inline-block;
                min-width: 24px;
                text-align: center;
                font-weight: 500;
            }
            .remove-btn {
                background: #e74c3c;
                color: #fff;
                border: none;
                border-radius: 4px;
                padding: 6px 16px;
                cursor: pointer;
                font-size: 0.95rem;
                margin-top: 8px;
                transition: background 0.2s, box-shadow 0.2s;
                box-shadow: 0 1px 4px rgba(231,76,60,0.08);
            }
            .remove-btn:hover {
                background: #c0392b;
                box-shadow: 0 2px 8px rgba(231,76,60,0.15);
            }
            .cart-summary {
                width: 50%;
                background: #f4f6ff;
                border-radius: 8px;
                padding: 24px;
                box-shadow: 0 1px 6px rgba(22,29,106,0.06);
            }
            .cart-summary h2 {
                color: black;
                font-size: 1.15rem;
                margin-bottom: 16px;
            }
            .cart-summary p {
                font-size: 1rem;
                margin-bottom: 10px;
                color: #444;
            }
            .summary-text a{
                color: black;
            }
            .checkout-btn {
                background: black;
                color: #fff;
                border: none;
                border-radius: 4px;
                padding: 12px 32px;
                font-size: 1.05rem;
                cursor: pointer;
                margin-top: 12px;
                transition: background 0.2s;
                box-shadow: 0 1px 4px rgba(22,29,106,0.08);
            }
            .checkout-btn:hover {
                background: #2b348a;
            }
            #total-items, #total-price {
                font-weight: 600;
                color: black;
                font-size: 20px;
            }
            @media (max-width: 600px) {
                .cart-container {
                    padding: 16px 6px;
                }
                .cart-item {
                    flex-direction: column;
                    align-items: flex-start;
                }
                .cart-item img {
                    margin-bottom: 12px;
                    margin-right: 0;
                    width: 100%;
                    height: auto;
                    width: 120px;
                    height: 120px;
                }
                 
            }
            @media (max-width: 800px) {
                .cart-containerAll{
                    display: flex;
                    flex-direction: column;
                }
                .cart-container, .cart-summary {
                    width: 100%;
                    margin-bottom: 24px;
                }
                 }