/* home page styles */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.carousel-container {
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}
.carousel-btn.prev {
    left: 15px;
}
.carousel-btn.next {
    right: 15px;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carousel-indicator.active {
    background-color: #000;
}

/* Slider Header Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}
.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}
.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.slider-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.slider-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.slider-btn {
    background-color: white;
    color: black;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-btn:hover {
    background-color: black;
    color: white;
}
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}
.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-indicator.active {
    background-color: white;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}
.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.slider-nav.prev {
    left: 1rem;
}
.slider-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }
    .slider-content {
        left: 5%;
        max-width: 90%;
    }
    .slider-content h2 {
        font-size: 2.5rem;
    }
    .slider-content p {
        font-size: 1.1rem;
    }
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }
    .slider-content h2 {
        font-size: 2rem;
    }
    .slider-content p {
        font-size: 1rem;
    }
}

/* shop page styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.filter-option {
    transition: all 0.2s ease;
}
.filter-option:hover {
    background-color: #f3f4f6;
}
.filter-option.active {
    background-color: #000;
    color: white;
}
.price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #d1d5db;
    outline: none;
}
.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}
/* product details page styles */
.product-image {
    transition: transform 0.3s ease;
}
.thumbnail {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.thumbnail:hover, .thumbnail.active {
    border-color: #000;
}
.size-option {
    transition: all 0.2s ease;
}
.size-option:hover {
    background-color: #f3f4f6;
}
.size-option.selected {
    background-color: #000;
    color: white;
}
.color-option {
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.color-option:hover, .color-option.selected {
    border-color: #000;
}
.quantity-btn {
    transition: all 0.2s ease;
}
.quantity-btn:hover {
    background-color: #f3f4f6;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-button {
    transition: all 0.2s ease;
}
.tab-button.active {
    border-bottom: 2px solid #000;
    font-weight: 600;
}

/* contact page styles */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.info-item {
    transition: all 0.3s ease;
}
.info-item:hover {
    transform: translateX(5px);
}

/* checkout page style */
.checkout-step {
    transition: all 0.3s ease;
}
.checkout-step.active {
    color: #000;
    font-weight: 600;
}
.checkout-step.completed {
    color: #10b981;
}
.payment-method {
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
}
.payment-method:hover, .payment-method.selected {
    border-color: #000;
}
.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}
.summary-item {
    transition: all 0.2s ease;
}

/* about page styles */
.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.team-member {
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-8px);
}
.value-item {
    transition: all 0.3s ease;
}
.value-item:hover .value-icon {
    transform: scale(1.1);
    background-color: #000;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
}
.timeline-dot {
    position: absolute;
    left: -6px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #000;
    z-index: 1;
}

/* customer dashboard style */
.profile-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}
.nav-item {
    transition: all 0.3s ease;
}
.nav-item.active {
    background-color: #f3f4f6;
    border-left: 4px solid #000;
    font-weight: 600;
}
.nav-item:hover:not(.active) {
    background-color: #f9fafb;
}
.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.status-delivered {
    background-color: #d1fae5;
    color: #065f46;
}
.status-processing {
    background-color: #fef3c7;
    color: #92400e;
}
.status-shipped {
    background-color: #dbeafe;
    color: #1e40af;
}
.status-cancelled {
    background-color: #fecaca;
    color: #991b1b;
}
.wishlist-item {
    transition: all 0.3s ease;
}
.wishlist-item:hover {
    transform: translateY(-5px);
}
.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #000;
    border-color: #000;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* collection page style  */
.collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
}
.collection-image {
    transition: transform 0.5s ease;
}
.collection-card:hover .collection-image {
    transform: scale(1.05);
}
.filter-btn {
    transition: all 0.3s ease;
}
.filter-btn.active {
    background-color: #000;
    color: white;
}
.filter-btn:hover:not(.active) {
    background-color: #f3f4f6;
}
.collection-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}
.seasonal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #000;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* terms and conditions  style */
.legal-section {
    transition: all 0.3s ease;
}
.legal-section:hover {
    transform: translateY(-3px);
}
.nav-item {
    transition: all 0.3s ease;
}
.nav-item.active {
    background-color: #f3f4f6;
    border-left: 4px solid #000;
    font-weight: 600;
}
.nav-item:hover:not(.active) {
    background-color: #f9fafb;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.back-to-top {
    transition: all 0.3s ease;
}
.back-to-top:hover {
    transform: translateY(-3px);
}

/* wishlist style */
.wishlist-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.wishlist-actions {
    transition: all 0.3s ease;
}
.wishlist-item:hover .wishlist-actions {
    opacity: 1;
    transform: translateY(0);
}
.empty-wishlist {
    transition: all 0.3s ease;
}
.empty-wishlist:hover {
    transform: scale(1.02);
}
.filter-btn {
    transition: all 0.3s ease;
}
.filter-btn.active {
    background-color: #000;
    color: white;
}
.filter-btn:hover:not(.active) {
    background-color: #f3f4f6;
}
.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}
.new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #000;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}
.home-logo {
    width: 100px;
    height: 30px;
}