div{
    border: 0px solid;
}

:root {
            --brand-black: #1a1a1a;
            --brand-orange: #fa7431;
            --brand-gold: #ffd700;
            --brand-cream: #f8f4e6;
            --brand-dark-orange: #e55a2b;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--brand-black) 0%, #FFA500 50%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #ccc;
        }

        .btn-brand {
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-dark-orange));
            border: none;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            color: white;
        }

        /* Category Cards */
        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 300px;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--brand-orange), var(--brand-dark-orange));
            opacity: 0;
            transition: all 0.3s ease;
        }

        .category-card:hover::before {
            opacity: 0.9;
        }

        .category-card-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .category-icon {
            font-size: 4rem;
            color: var(--brand-orange);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-icon {
            color: white;
            transform: scale(1.1);
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-title {
            color: white;
        }

        .category-description {
            color: #666;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-description {
            color: rgba(255,255,255,0.9);
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--brand-orange);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 3;
        }

        .product-badge.new {
            background: var(--brand-gold);
            color: var(--brand-black);
        }

        .product-badge.sale {
            background: #dc3545;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-brand {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .current-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--brand-orange);
        }

        .original-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .discount-badge {
            background: var(--brand-orange);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .stars {
            color: var(--brand-gold);
            margin-right: 0.5rem;
        }

        .rating-count {
            color: #666;
            font-size: 0.9rem;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-gold));
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        /* Quick Access Menu */
        .quick-access {
            background: var(--brand-orange);
            padding: 60px 0;
        }

        .quick-access-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        .quick-access-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            text-decoration: none;
            color: inherit;
        }

        .quick-access-icon {
            font-size: 3rem;
            color: var(--brand-orange);
            margin-bottom: 1rem;
        }

        .quick-access-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
        }

        .quick-access-count {
            color: #666;
            font-size: 0.9rem;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--brand-black) 0%, #333 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .newsletter-input {
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            width: 70%;
        }

        .newsletter-btn {
            background: var(--brand-orange);
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            width: 30%;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--brand-dark-orange);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .category-card {
                height: 250px;
            }
            
            .newsletter-input,
            .newsletter-btn {
                width: 100%;
                border-radius: 50px;
                margin-bottom: 1rem;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Toast Notifications */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        /* Cart Animation */
        .cart-animate {
            animation: cartBounce 0.3s ease-in-out;
        }

        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }

        
        
        .foot-footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 40px 0 20px 0;
        }

        .foot-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .foot-footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .foot-footer-brand {
            max-width: 350px;
        }

        .foot-footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .foot-brand-icon {
            color: #ff6b35;
            font-size: 24px;
            margin-right: 10px;
        }

        .foot-brand-text {
            color: #ff6b35;
            font-size: 24px;
            font-weight: bold;
        }

        .foot-footer-description {
            color: #cccccc;
            line-height: 1.6;
            font-size: 14px;
        }

        .foot-footer-column {
            display: flex;
            flex-direction: column;
        }

        .foot-footer-title {
            color: #ff6b35;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .foot-footer-link {
            color: #cccccc;
            text-decoration: none;
            margin-bottom: 8px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .foot-footer-link:hover {
            color: #ff6b35;
        }

        .foot-footer-link i {
            margin-right: 8px;
            width: 16px;
        }

        .foot-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .foot-copyright {
            color: #cccccc;
            font-size: 14px;
        }

        .foot-developer {
            color: #cccccc;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .foot-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .foot-footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 992px) and (min-width: 769px) {
            .foot-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

    /* Fashion Details Section */

  
        .product-gallery {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .thumbnail-images {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            padding: 10px 0;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border-color: var(--brand-orange);
            transform: scale(1.05);
        }

        .product-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 20px;
        }

        .product-title {
            font-size: 2rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
        }

        .product-brand {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .stars {
            color: var(--brand-gold);
            margin-right: 10px;
        }

        .rating-text {
            color: #666;
        }

        .product-price {
            margin-bottom: 1.5rem;
        }

        .current-price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--brand-orange);
        }

        .original-price {
            font-size: 1.2rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 10px;
        }

        .discount-badge {
            background: var(--brand-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-left: 10px;
        }

        .product-details {
            margin-bottom: 1.5rem;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--brand-black);
        }

        .detail-value {
            color: #666;
        }

        .size-selector,
        .color-selector {
            margin-bottom: 1rem;
        }

        .selector-label {
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .size-options,
        .color-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .size-option,
        .color-option {
            padding: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .size-option:hover,
        .size-option.active {
            border-color: var(--brand-orange);
            background: var(--brand-orange);
            color: white;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            position: relative;
        }

        .color-option.active::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .quantity-label {
            font-weight: 600;
            margin-right: 15px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            border: 2px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .quantity-btn {
            background: none;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            color: var(--brand-orange);
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .quantity-btn:hover {
            background: var(--brand-cream);
        }

        .quantity-input {
            border: none;
            text-align: center;
            width: 60px;
            padding: 10px 5px;
            font-weight: 600;
        }

        .btn-brand {
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-dark-orange));
            border: none;
            color: white;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            margin-bottom: 15px;
        }

        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            color: white;
        }

        .btn-wishlist {
            background: none;
            border: 2px solid var(--brand-orange);
            color: var(--brand-orange);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-wishlist:hover {
            background: var(--brand-orange);
            color: white;
        }

        .product-tabs {
            margin-top: 3rem;
        }

        .nav-tabs .nav-link {
            border: none;
            color: #666;
            font-weight: 600;
            padding: 15px 20px;
        }

        .nav-tabs .nav-link.active {
            color: var(--brand-orange);
            border-bottom: 3px solid var(--brand-orange);
            background: none;
        }

        .tab-content {
            background: white;
            padding: 2rem;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .review-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }

        .review-item:last-child {
            border-bottom: none;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .reviewer-name {
            font-weight: bold;
            color: var(--brand-black);
        }

        .review-date {
            color: #666;
            font-size: 0.9rem;
        }

        .review-rating {
            color: var(--brand-gold);
            margin-bottom: 10px;
        }

        .related-products {
            margin-top: 3rem;
        }

        .related-product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .related-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .related-product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .related-product-info {
            padding: 1rem;
        }

        .breadcrumb {
            background: none;
            padding: 1rem 0;
        }

        .breadcrumb-item a {
            color: var(--brand-orange);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: #666;
        }

        .stock-status {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .stock-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .in-stock {
            background: #28a745;
        }

        .low-stock {
            background: #ffc107;
        }

        .out-of-stock {
            background: #dc3545;
        }

        @media (max-width: 768px) {
            .product-info {
                position: static;
                margin-top: 2rem;
            }
            
            .main-image {
                height: 350px;
            }
            
            .product-title {
                font-size: 1.5rem;
            }
        }
    


        /* for the select by category section */

        .quick-access {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.fa-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.fa-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: orange;
    margin-bottom: 10px;
}

.fa-section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.category-select-wrapper {
    position: relative;
    margin-top: 20px;
}

.category-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.category-label i {
    color: #3498db;
    margin-right: 8px;
}

.category-select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    background: white;
    border: 3px solid #3498db;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.category-select:hover {
    border-color: #2980b9;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.category-select:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.category-select option {
    padding: 12px;
    font-size: 1rem;
    background: white;
    color: #2c3e50;
}

.category-select option:hover {
    background: #ecf0f1;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 6px;
}

/* Animation for dropdown arrow */
.category-select:focus ~ .select-arrow i {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fa-section-title h2 {
        font-size: 2rem;
    }
    
    .category-select {
        font-size: 1rem;
        padding: 15px 45px 15px 15px;
    }
    
    .category-label {
        font-size: 1rem;
    }
}

/* Loading state when navigating */
.category-select.loading {
    opacity: 0.6;
    pointer-events: none;
}

.category-select.loading::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #f89705;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}