/* Apple Store Inspired Global Styles */
body {
    background: #fff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1d1d1f;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.022em;
}

a {
    color: #06c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0071e3;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #0071e3;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 980px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0077ed;
    color: #fff;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.btn-secondary:hover {
    background-color: #e8e8ed;
    color: #1d1d1f;
}

.text-center {
    text-align: center;
}

/* Apple-inspired Header and Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: none;
    margin-bottom: 0;
}

.navbar-brand {
    height: 44px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 20px;
}

.navbar-nav > li > a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}

.navbar-toggle {
    border: none;
    background: transparent;
}

.navbar-toggle .icon-bar {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.carousel-inner {
    height: 600px;
}

.carousel-inner .item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-inner .item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.022em;
}

.carousel-caption p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
}

.carousel-indicators .active {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background-color: #fff;
}

.carousel-control {
    width: 5%;
    background: none;
    opacity: 0.8;
}

.carousel-control:hover {
    opacity: 1;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.category-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1d1d1f;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 30px;
    transition: color 0.3s ease;
}

.category-nav a:hover {
    color: #0071e3;
}

.category-nav a:hover .category-icon {
    stroke: #0071e3;
}

.category-icon {
    margin-bottom: 8px;
    fill: none;
    stroke: #1d1d1f;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zalora-inspired Header and Navigation */
.navbar-inverse {
    background-color: #fff !important;
    border-color: #eee !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.navbar-inverse .navbar-nav > li > a {
    color: #333 !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: #e41d36 !important;
}

.navbar-brand {
    margin-top: -10px !important;
}

/* Search Bar Styling */
.navbar-form .form-control {
    width: 300px;
    height: 40px;
    border-radius: 20px 0 0 20px !important;
    border: 1px solid #ddd;
    box-shadow: none;
    padding-left: 20px;
}

.navbar-form .btn {
    height: 40px;
    border-radius: 0 20px 20px 0 !important;
    background: #e41d36;
    color: #fff;
    border: none;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
}

#heading-block {
    text-align: center;
    margin-bottom: 50px;
}

#heading-block h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
    letter-spacing: -0.022em;
}

#heading-block p {
    font-size: 20px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #1d1d1f;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 980px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #0071e3;
}

.filter-btn.active {
    background-color: #0071e3;
    color: #fff;
}

/* Product Grid */
.prod-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.prod-box {
    position: relative;
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.prod-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.hover-zoom {
    position: relative;
    overflow: hidden;
}

.hover-zoom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prod-box:hover .hover-zoom img {
    transform: scale(1.05);
}

.prod-trans {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    transition: all 0.3s ease;
}

.prod-feature {
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e41d36;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.prod-box:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.wishlist-btn {
    color: #333;
    border-bottom: 2px solid #ddd;
}

.chat-btn {
    color: #333;
    border-bottom: 2px solid #ddd;
}

.wishlist-btn:hover, .chat-btn:hover {
    border-bottom: 2px solid #e41d36;
    color: #e41d36;
}

/* Quick View Overlay */
.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.prod-box:hover .quick-view-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 20px;
    background: #fff;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #e41d36;
    color: #fff;
}

/* Benefits Section */
.benefits-section {
    background-color: #f5f5f7;
    padding: 80px 0;
    margin-bottom: 0;
}

.benefit-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-box i {
    font-size: 36px;
    color: #0071e3;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.benefit-box p {
    font-size: 16px;
    color: #86868b;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.newsletter-section p {
    font-size: 18px;
    color: #86868b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #d2d2d7;
    border-radius: 980px 0 0 980px;
    font-size: 16px;
}

.newsletter-form input:focus {
    border-color: #0071e3;
}

.newsletter-form button {
    background-color: #0071e3;
    color: #fff;
    height: 48px;
    padding: 0 25px;
    border: none;
    border-radius: 0 980px 980px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0077ed;
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-size: 18px;
}

/* Footer Styles */
footer {
    background-color: #f5f5f7;
    padding: 60px 0 30px;
    color: #1d1d1f;
}

footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #515154;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #0071e3;
}

.footer-bottom {
    border-top: 1px solid #d2d2d7;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #86868b;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d1d1f;
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0071e3;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .carousel-caption h1 {
        font-size: 36px;
    }
    
    .carousel-caption p {
        font-size: 18px;
    }
    
    .benefit-box {
        margin-bottom: 30px;
    }
    
    .navbar-form .form-control {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .carousel-inner, .carousel-inner .item {
        height: 400px;
    }
    
    .carousel-caption h1 {
        font-size: 28px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
    
    #heading-block h2 {
        font-size: 24px;
    }
    
    .prod-box {
        width: 100%;
        max-width: 280px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
}

/* Interactive Elements */
.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

.btn-fashion {
    background: #e41d36;
    color: #fff;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-fashion:hover {
    background: #c41a2f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Color Swatches for Products */
.color-options {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.color-swatch {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Size Options */
.size-options {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.size-option {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    margin: 0 3px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #e41d36;
    color: #e41d36;
}

/* Quick Add to Cart */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e41d36;
    color: #fff;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.prod-box:hover .quick-add {
    transform: translateY(0);
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e41d36;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

/* New Arrival Badge */
.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top:20px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.card-desc .card-img-box {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
        }

#wrapper{
	font-family: tahoma;
	font-size: 16px;
}

.navbar-brand{
	margin-top: -16px !important;
}

#subheader {
width: 100%;
height: 25px;
background: rgb(0,0,0);
color: #fff;
margin-top : -10px ;
}

.container{
	width: 100%; margin: 7px auto 0px;
}

#subheader p{
	float: left;
	margin-top: 7px;
}

#subheader a{
	float: right;
	line-height: 25px;
	color: #fff;
	text-decoration: none;
	margin-left: 30px;
}	

/*logo style */
#main-header{
	width: 100%;
	height: 100px;
	background: rgb(0,0,50);
	float: left;
	margin-top: -17px;
}

#logo{
	width: 250px;
	margin-top: 30px;
	float : left;
}

#ist{
	color: white;
	font-size: 25px;
	font-weight: bold;
	margin-left: 15px;
	font-family:serif;
}

#iist{
	color: white;
	font-size: 30px;
}

/*search area styling*/

#search{
	width: 650px;
	float : left;
	padding: 20px 20px 20px 10px;
	margin-left : 50px ;

}

.search-area{
	width: 650px;
	height: 50px;
	background : #fff;
	border : none;
	border-radius: 10px;
	float:left;
	padding-left: 15px;
}

.search-button{
	cursor: pointer;
	width : 100px;
	height: 53px;
	float:left;
	border : none;
	border-radius: 10px;
	background : #E47923;
	color: #fff;
	margin-left: -100px;
}

/*user menu styling*/
#user-menu2{
	float: left;
	margin-top: 35px;
	margin-left: 120px;

}

#user-menu2 li{
	float:left;
	width: 100px;
	text-align: center;
	list-style: none;
	font-size: 20px;
}

#user-menu2 li a{
	color: white;
	text-decoration: underline;
}

/*user menu styling*/
#user-menu{
	float: left;
	margin-top: 40px;
	margin-left: 70px;

}

#user-menu li{
	float:left;
	width: 140px;
	text-align: center;
	list-style: none;
	font-size: 17px;
}

#user-menu li a{
	color: white;
	text-decoration: none;
}

#sell{
	cursor: pointer;

}

#sell a{
	color: black;
}

  
	  
/*PRODUCTS PART*/
.card-content
{
	border: 4px;
	
}


#heading-block{

	text-align: center;
	width:100%;
	height: auto;
	float: left;
	color:blue !important;
	font-size:22px;
	border-color: rgb(51,51,51)
}
#heading-block h2{
	line-height:35px;
	padding-left:10px;
}


#heading-block:hover{
	text-decoration: none !important;
}
.prod-box{
	width: 295px;
	height: 295px;
	overflow: hidden;
	margin:0 20px 30px 0;
	position: relative;
	float: left;
}

.prod-box>img{
	max-width: 100%;
}

.prod-trans{
	background:rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	opacity: 0;
	transition:all .5s ease;
}

.prod-box:hover .prod-trans{
	opacity:1;
	transition:all .5s ease;
}

.prod-feature{
	text-align: center;
	margin-top:-150px;
	transition:all .5s ease;
}
.prod-feature p{
	color: #00eb00;
	font-family: verdana;
}
.prod-box:hover .prod-feature{
	margin-top: 100px;
	transition:all .5s ease;
}

.prod-feature input{
	width: 150px;
	height:35px;
	font-size:17px;
}

.prod-feature input:hover{
	cursor: pointer;
}

/*Footer*/

#footer{
	width: 100%;
	height: auto;
	background: #f5f5f5;
	float:left;
}

.footer-sub1{
	width: 35%;
	margin-right: 10px;
	float:left;
}

.footer-sub2{
	float:left;
	width: 25%;
	margin-right: 10px;
}

.footer-sub2 ul li{
	list-style: none;
}
.footer-sub2 ul li a{
	text-decoration: none;
	color: #000;
}

.footer-sub2 ul li a:hover{
	color: #1aaa1a;
	text-decoration: underline;
}
.footer-sub3{
	width: 35%;
	float: left;
}

.subs{
	width: 300px;
	border: none;
	height: 35px;
	padding: 15px;
	float: left;
}
.sub_btn{
	height: 65px;
	width: 110px;
	border: none;background: #1aaa1a;
	float: left;
}

.sub_btn:hover{
	cursor: pointer;
}

#italics{
	color: #999;
	font-style: italic;
	font-size: 15px;
}

.dropbtn {
    background-color: none;
    color: black;
    padding: 0;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 20px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}


.slideshow-container{
width: 100%;
margin: auto;
}


.myslides{
display: none;
}

.prev , .next{
position: absolute;
top: 50%;
font-size: 18px;
font-weight: bold;
padding: 20px;
border-radius: 0 3px 3px 0;
color: #fff;
cursor: pointer;
}

.next{
right: 0;
/*border-radius: 3px 0 0 3px;*/
}



.caption{
text-align: center;
position: absolute;
bottom: 8px;
width: 100%;
color: #f2f2f2;
font-size: 15px;
padding: 8px 22px;
}

.dots{
width: 13px;
height: 13px;
background: gray;
display: inline-block;
border-radius: 50%;
cursor: pointer;
}

.fade{
animation-name:fade;
animation-duration:1.5s;
}

@keyframes fade{
from {opacity: 0.4;}
to {opacity: 1;}
}

.active, .dot:hover {

}


.carousel-inner img {
      width: 100%; /* Set width to 100% */
      margin: auto ;
      min-height:200px;
  }
  

  /* Hide the carousel text when the screen is less than 600 pixels wide */
  @media (max-width: 600px) {
    .carousel-caption {
      display: none; 
    }
  }

/* Hero Section Styles */
.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    background-color: #e41d36;
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    background-color: #c41830;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.slide-up {
    animation: slideUp 1.2s ease-in-out;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 15px 0;
   
}

.category-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 20px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.category-nav a:hover {
    color: #e41d36;
}

.category-nav a.active {
    color: #e41d36;
}

.category-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e41d36;
}

/* Featured Section */
.featured-section {
    padding: 40px 0;
}

#heading-block {
    text-align: center;
    margin-bottom: 30px;
}

#heading-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

#heading-block p {
    font-size: 16px;
    color: #666;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    margin: 0 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #e41d36;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-btn:hover {
    color: #e41d36;
}

.filter-btn.active {
    color: #e41d36;
}

.filter-btn.active:after {
    width: 80%;
}

/* Product Container */
.prod-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.prod-box {
    width: 270px;
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.prod-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Product Badges */
.sale-badge, .new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sale-badge {
    background-color: #fa5252;
    color: #fff;
}

.new-badge {
    background-color: #0071e3;
    color: #fff;
}

/* Product Image Hover Effect */
.hover-zoom {
    position: relative;
    overflow: hidden;
}

.hover-zoom img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prod-box:hover .hover-zoom img {
    transform: scale(1.05);
}

/* Quick View Overlay */
.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prod-box:hover .quick-view-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: white;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background-color: #e41d36;
    color: white;
}

/* Product Info */
.prod-trans {
    padding: 15px;
}

.prod-feature {
    text-align: center;
}

.product-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.product-price {
    font-size: 18px;
    color: #e41d36;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Color Options */
.color-options {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #ddd;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Size Options */
.size-options {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.size-option {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #333;
}

.size-option:hover {
    border-color: #e41d36;
    color: #e41d36;
}

/* Product Actions */
.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.action-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.action-btn:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

.wishlist-btn:hover {
    color: #e41d36;
}

.chat-btn:hover {
    color: #3182ce;
}

/* Quick Add Button */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.prod-box:hover .quick-add {
    transform: translateY(0);
}

.quick-add:hover {
    background-color: #e41d36;
}

/* Benefits Section */
.benefits-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 40px;
}

.benefit-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
}

.benefit-box i {
    font-size: 3rem;
    color: #e41d36;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.benefit-box p {
    color: #666;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: #e41d36;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c41830;
}

/* View All Button */
.btn-fashion {
    display: inline-block;
    background-color: white;
    color: #333;
    border: 2px solid #333;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-fashion:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .category-nav a {
        margin: 0 10px;
        font-size: 14px;
    }
    
    .prod-container {
        gap: 10px;
    }
    
    .prod-box {
        width: 45%;
    }
    
    .modal-content {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .category-nav {
        flex-wrap: wrap;
    }
    
    .category-nav a {
        margin: 5px;
    }
    
    .prod-box {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
}

/* Products Header */
.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d2d2d7;
}

.products-count {
    font-size: 14px;
    color: #86868b;
}

.products-count span {
    font-weight: 600;
    color: #1d1d1f;
}

.sort-options {
    display: flex;
    align-items: center;
}

.sort-options label {
    margin-right: 10px;
    font-size: 14px;
    color: #86868b;
}

.sort-options select {
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    padding: 8px 30px 8px 12px;
    font-size: 14px;
    color: #1d1d1f;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-options select:focus {
    border-color: #0071e3;
}

.view-options {
    display: flex;
    align-items: center;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d2d7;
    background-color: #fff;
    color: #86868b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.view-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.view-btn.active {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.view-btn:hover {
    color: #0071e3;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-item {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sale-badge, .new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sale-badge {
    background-color: #fa5252;
    color: #fff;
}

.new-badge {
    background-color: #0071e3;
    color: #fff;
}

/* List View */
.products-grid.list-view-active {
    flex-direction: column;
}

.products-grid.list-view-active .product-item {
    width: 100%;
    display: flex;
}

.products-grid.list-view-active .product-image {
    width: 250px;
    flex-shrink: 0;
}

.products-grid.list-view-active .product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #f5f5f7;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-item.active .page-link {
    background-color: #0071e3;
    color: #fff;
}

.page-item:not(.active) .page-link:hover {
    background-color: #e5e5ea;
}

.page-item.disabled .page-link {
    color: #86868b;
    pointer-events: none;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.product-modal .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 200;
    color: #1d1d1f;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #0071e3;
}

.modal-body {
    padding: 0;
}

.product-modal-image {
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-modal-details {
    padding: 40px;
}

.product-modal-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.modal-product-price {
    font-size: 24px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 30px;
}

.modal-product-colors h4,
.modal-product-sizes h4,
.modal-product-quantity h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover, .size-option.active {
    border-color: #0071e3;
    color: #0071e3;
    background-color: rgba(0, 113, 227, 0.05);
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e5e5ea;
}

.quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    font-size: 16px;
    border: none;
    background: transparent;
    margin: 0 10px;
}

.modal-product-actions {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn, .buy-now-btn {
    flex: 1;
    height: 50px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background-color: #0071e3;
    color: #fff;
    border: none;
}

.add-to-cart-btn:hover {
    background-color: #0077ed;
}

.buy-now-btn {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: none;
}

.buy-now-btn:hover {
    background-color: #e5e5ea;
}

.add-to-cart-btn i {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid.list-view-active .product-item {
        grid-template-columns: 200px 1fr;
    }
    
    .product-modal-image {
        height: 400px;
    }
    
    .product-modal-details {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid.list-view-active .product-item {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-options select {
        width: 100%;
    }
    
    .view-options {
        display: none;
    }
    
    .modal-body .row {
        flex-direction: column;
    }
    
    .product-modal-image {
        height: 300px;
    }
    
    .product-modal-details {
        padding: 20px;
    }
    
    .modal-product-actions {
        flex-direction: column;
    }
}

/* Price Range Slider */
.price-range {
    margin-top: 15px;
}

.slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #d2d2d7;
    outline: none;
    border-radius: 2px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0071e3;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0071e3;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #86868b;
}

/* Color Filters */
.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.color-filter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-filter:hover {
    transform: scale(1.1);
}

.color-filter.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid #0071e3;
    border-radius: 50%;
    top: -3px;
    left: -3px;
}

/* Size Filters */
.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.size-filter {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-filter:hover, .size-filter.active {
    border-color: #0071e3;
    color: #0071e3;
    background-color: rgba(0, 113, 227, 0.05);
}

.apply-filters-btn {
    width: 100%;
    height: 44px;
    background-color: #0071e3;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.apply-filters-btn:hover {
    background-color: #0077ed;
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 10px;
}

.overlay-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.product-item:hover .overlay-buttons button {
    transform: translateY(0);
    opacity: 1;
}

.overlay-buttons button:nth-child(1) {
    transition-delay: 0.1s;
}

.overlay-buttons button:nth-child(2) {
    transition-delay: 0.2s;
}

.overlay-buttons button:nth-child(3) {
    transition-delay: 0.3s;
}

.overlay-buttons button:hover {
    background-color: #0071e3;
    color: #fff;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #0071e3;
}

.product-description {
    font-size: 14px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-link {
    display: inline-flex;
    align-items: center;
    color: #0071e3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chat-link i {
    margin-right: 5px;
}

.chat-link:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* List View */
.products-grid.list-view-active {
    grid-template-columns: 1fr;
}

.products-grid.list-view-active .product-item {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.products-grid.list-view-active .product-image {
    height: 100%;
}

.products-grid.list-view-active .product-details {
    padding: 25px;
}

.products-grid.list-view-active .product-title {
    font-size: 18px;
    white-space: normal;
}

.products-grid.list-view-active .product-description {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 20px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f7;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-item.active .page-link {
    background-color: #0071e3;
    color: #fff;
}

.page-item:not(.active) .page-link:hover {
    background-color: #e5e5ea;
}

.page-item.disabled .page-link {
    color: #86868b;
    pointer-events: none;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.product-modal .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 200;
    color: #1d1d1f;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #0071e3;
}

.modal-body {
    padding: 0;
}

.product-modal-image {
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-modal-details {
    padding: 40px;
}

.product-modal-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.modal-product-price {
    font-size: 24px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 30px;
}

.modal-product-colors h4,
.modal-product-sizes h4,
.modal-product-quantity h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover, .size-option.active {
    border-color: #0071e3;
    color: #0071e3;
    background-color: rgba(0, 113, 227, 0.05);
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e5e5ea;
}

.quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    font-size: 16px;
    border: none;
    background: transparent;
    margin: 0 10px;
}

.modal-product-actions {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn, .buy-now-btn {
    flex: 1;
    height: 50px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background-color: #0071e3;
    color: #fff;
    border: none;
}

.add-to-cart-btn:hover {
    background-color: #0077ed;
}

.buy-now-btn {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: none;
}

.buy-now-btn:hover {
    background-color: #e5e5ea;
}

.add-to-cart-btn i {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid.list-view-active .product-item {
        grid-template-columns: 200px 1fr;
    }
    
    .product-modal-image {
        height: 400px;
    }
    
    .product-modal-details {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid.list-view-active .product-item {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-options select {
        width: 100%;
    }
    
    .view-options {
        display: none;
    }
    
    .modal-body .row {
        flex-direction: column;
    }
    
    .product-modal-image {
        height: 300px;
    }
    
    .product-modal-details {
        padding: 20px;
    }
    
    .modal-product-actions {
        flex-direction: column;
    }
}

/* Apple Store Global Variables */
:root {
    --apple-blue: #0071e3;
    --apple-blue-hover: #0077ed;
    --apple-dark: #1d1d1f;
    --apple-medium-dark: #515154;
    --apple-gray: #86868b;
    --apple-light-gray: #d2d2d7;
    --apple-background: #f5f5f7;
    --apple-white: #ffffff;
    --apple-red: #fa5252;
    --apple-green: #38b2ac;
}

/* Footer Styles */
footer {
    background-color: #f5f5f7;
    padding: 60px 0 30px;
    color: #1d1d1f;
    border-top: 1px solid #d2d2d7;
}

footer h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #515154;
    font-size: 14px;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #0071e3;
    text-decoration: none;
}

footer p {
    font-size: 14px;
    color: #515154;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #0071e3;
}

.newsletter-form button {
    height: 44px;
    padding: 0 20px;
    background-color: #0071e3;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0077ed;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #1d1d1f;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #0071e3;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #d2d2d7;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 5px;
}

.footer-bottom a {
    color: #0071e3;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 767px) {
    footer .row > div {
        margin-bottom: 30px;
    }
    
    .social-icons {
        margin: 30px 0;
    }
}

/* Add Apple-style animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.6s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.6s ease 0.6s forwards;
    opacity: 0;
}

/* Apple-style Featured Section */
.apple-featured {
    padding: 80px 0;
    background-color: #fff;
}

.featured-heading {
    text-align: center;
    margin-bottom: 50px;
}

.featured-heading h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.featured-heading p {
    font-size: 20px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    height: 700px;
}

.featured-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: #f5f5f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.featured-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.featured-item h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.featured-large h3 {
    font-size: 36px;
}

.featured-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.featured-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.featured-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.featured-link:hover {
    color: #0071e3;
}

.featured-link:hover i {
    transform: translateX(3px);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
        height: auto;
    }
    
    .featured-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .featured-heading h2 {
        font-size: 32px;
    }
    
    .featured-heading p {
        font-size: 18px;
    }
    
    .featured-item h3 {
        font-size: 24px;
    }
    
    .featured-large h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .apple-featured {
        padding: 60px 0;
    }
    
    .featured-heading {
        margin-bottom: 30px;
    }
    
    .featured-heading h2 {
        font-size: 28px;
    }
    
    .featured-heading p {
        font-size: 16px;
    }
    
    .featured-grid {
        gap: 20px;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-item h3 {
        font-size: 22px;
    }
    
    .featured-large h3 {
        font-size: 24px;
    }
    
    .featured-item p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .featured-link {
        font-size: 14px;
    }
}

/* Apple-style Product Carousel */
.product-carousel {
    padding: 60px 0;
    background-color: #f5f5f7;
}

.carousel-heading {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-heading h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.carousel-heading p {
    font-size: 18px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.product-slider {
    position: relative;
    padding: 0 40px;
}

.product-slide {
    padding: 15px;
}

.product-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-price {
    font-size: 18px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 15px;
}

.product-card-actions {
    display: flex;
    justify-content: space-between;
}

.card-btn {
    padding: 8px 15px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-btn-primary {
    background-color: #0071e3;
    color: #fff;
    border: none;
}

.card-btn-primary:hover {
    background-color: #0077ed;
}

.card-btn-secondary {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: none;
}

.card-btn-secondary:hover {
    background-color: #e5e5ea;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1d1d1f;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #0071e3;
    color: #fff;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

@media (max-width: 767px) {
    .product-carousel {
        padding: 40px 0;
    }
    
    .carousel-heading h2 {
        font-size: 28px;
    }
    
    .carousel-heading p {
        font-size: 16px;
    }
    
    .product-slider {
        padding: 0 30px;
    }
    
    .product-card-image {
        height: 200px;
    }
}
