/* Favorites Page Styles */

.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Page Layout */
.favories-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.favories-main {
    padding-top: 120px;
    padding-bottom: 50px;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Cairo', sans-serif;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 30px;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.empty-state p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
}

.empty-state .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
}

/* Favorites Grid */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Favorite Product Card */
.favorite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.favorite-card .product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.favorite-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Remove from favorites button */
.remove-favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ff4757;
    font-size: 14px;
}

.remove-favorite-btn:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

/* Product Info */
.favorite-card .product-info {
    padding: 20px;
}

.favorite-card .price-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.favorite-card .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    font-family: 'Cairo', sans-serif;
}

.favorite-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #C39F2B;
    font-family: 'Cairo', sans-serif;
}

.favorite-card .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

/* Color circles */
.favorite-card .color-circles {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.favorite-card .color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Color variations */
.color-circle.black { background-color: #000000; }
.color-circle.white { background-color: #FFFFFF; border: 1px solid #ddd; }
.color-circle.red { background-color: #FF0000; }
.color-circle.green { background-color: #008000; }
.color-circle.blue { background-color: #0000FF; }
.color-circle.dark-blue { background-color: #00008B; }
.color-circle.light-blue { background-color: #ADD8E6; }
.color-circle.baby-blue { background-color: #89cff0; }
.color-circle.yellow { background-color: #FFFF00; }
.color-circle.pink { background-color: #FFC0CB; }
.color-circle.purple { background-color: #800080; }
.color-circle.orange { background-color: #FFA500; }
.color-circle.brown { background-color: #964B00; }
.color-circle.beige { background-color: #cec284; border: 1px solid #ddd; }
.color-circle.gray { background-color: #808080; }
.color-circle.gold { background-color: #ebb758; }
.color-circle.silver { background-color: #C0C0C0; }
.color-circle.bronze { background-color: #CD7F32; }
.color-circle.metal { background-color: #B87333; }

/* Card Actions */
.favorite-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.favorite-card .btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.favorite-card .btn-outline-primary {
    border-color: #C39F2B;
    color: #C39F2B;
}

.favorite-card .btn-outline-primary:hover {
    background-color: #C39F2B;
    border-color: #C39F2B;
    color: white;
}

.favorite-card .btn-danger {
    background-color: #ff4757;
    border-color: #ff4757;
}

.favorite-card .btn-danger:hover {
    background-color: #e63946;
    border-color: #e63946;
}

/* Actions Bar */
.actions-bar {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.favorites-count {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.favorites-count span {
    color: #C39F2B;
    font-weight: 700;
}

.actions-bar .btn {
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.actions-bar .btn-outline-danger {
    border-color: #ff4757;
    color: #ff4757;
}

.actions-bar .btn-outline-danger:hover {
    background-color: #ff4757;
    border-color: #ff4757;
    color: white;
}

.actions-bar .btn-primary {
    background-color: #C39F2B;
    border-color: #C39F2B;
}

.actions-bar .btn-primary:hover {
    background-color: #A88A1F;
    border-color: #A88A1F;
}

/* Animation for new favorites */
.favorite-card.new-favorite {
    animation: slideInUp 0.5s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .actions-bar .btn {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .actions-bar .col-md-6 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .favories-main {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
}

/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
