/* Main Styles for RK Fashion */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 0;
    transition: padding-top 0.3s ease;
}

body.scrolled {
    padding-top: 70px; /* Height of the main navigation */
}

/* Sticky Header Styles */
.site-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.top-bar {
    transition: transform 0.3s ease;
}

.main-navigation {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.sticky .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header.sticky .top-bar {
    transform: translateY(-100%);
}

.bg-gradient {
    background-image: linear-gradient(to bottom right, #fdf2f8, #ffffff, #f5f3ff);
}

.bg-gradient-primary {
    background-image: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.cursor-pointer {
    cursor: pointer;
}

.hover-text-light:hover {
    color: #bfdbfe !important;
    transition: color 0.3s;
}

/* Brand Styles */
.brand-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.brand-link:hover {
    transform: scale(1.02);
}

.brand-logo-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.brand-link:hover .brand-logo-container {
    transform: scale(1.1);
}

.brand-link:hover .brand-logo-img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* Fallback for when logo doesn't load */
.brand-logo-container::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.brand-logo-img:not([src]),
.brand-logo-img[src=""] {
    opacity: 0;
}

.brand-logo-img:not([src]) + .brand-logo-container::before,
.brand-logo-img[src=""] + .brand-logo-container::before {
    opacity: 1;
}

.brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.75rem;
    background-image: linear-gradient(135deg, #d4af37, #ffd700, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-link:hover .brand-text {
    background-image: linear-gradient(135deg, #b8860b, #d4af37, #ffd700);
    transform: translateY(-1px);
}

.brand-text-container {
    position: relative;
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: -5px;
    color: #8b5cf6 !important;
    font-weight: 500;
    font-style: italic;
}

/* Logo Animation Effects */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(6, 182, 212, 0.4));
    }
}

.brand-logo-img {
    animation: logoGlow 3s ease-in-out infinite;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .brand-logo-container {
        width: 50px;
        height: 50px;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .brand-logo-container {
        width: 45px;
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: -5px;
}

/* Navigation */
.nav-link {
    color: #4b5563;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 2px;
    background-image: linear-gradient(135deg, #d4af37, #8b5cf6, #06b6d4);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-image: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.4);
    background-image: linear-gradient(135deg, #7c3aed, #0891b2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #111827;
}

.btn-dark {
    background: #111827;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: #1f2937;
}

.btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: transparent;
    color: #4b5563;
    border: none;
    transition: all 0.3s;
    position: relative;
}

.btn-icon:hover {
    background: #eff6ff;
    color: #2563eb;
    transform: scale(1.1);
}

.badge-circle {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background-image: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.3);
}

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

@media (min-width: 768px) {
    .hero-section {
        height: 700px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        height: 800px;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Auto-scroll animation enhancement */
.hero-slide .hero-content {
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 36rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(6, 182, 212, 0.8));
    color: white;
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-nav-button:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(6, 182, 212, 1));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.hero-nav-button:disabled:hover {
    transform: translateY(-50%) scale(0.9);
}

.hero-nav-prev {
    left: 1rem;
}

.hero-nav-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .hero-nav-prev {
        left: 2rem;
    }
    
    .hero-nav-next {
        right: 2rem;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* Auto-scroll progress animation */
.hero-indicator.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    animation: indicatorProgress 5s linear infinite;
    opacity: 0.8;
}

@keyframes indicatorProgress {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Product Cards */
.product-card {
    background: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    color: #4b5563;
    transition: background 0.3s;
}

.product-wishlist-button:hover {
    background: #f3f4f6;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-sold {
    font-size: 0.875rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.product-original-price {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 450px;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.category-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer-heading {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-image: linear-gradient(135deg, #d4af37, #8b5cf6, #06b6d4);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Footer Brand Section */
.footer-brand-section {
    position: relative;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 6px 16px rgba(139, 92, 246, 0.5));
    transform: scale(1.05);
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    background-image: linear-gradient(135deg, #d4af37, #ffd700, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-brand-tagline {
    color: #8b5cf6 !important;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Footer Description */
.footer-description {
    position: relative;
}

.footer-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #8b5cf6;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Footer Social Section */
.footer-social-section {
    position: relative;
}

.footer-social-title {
    color: #f3f4f6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.footer-social-link:hover::before {
    transform: scale(1);
}

.footer-social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: white;
}

.footer-social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.footer-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.footer-social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.footer-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-link i {
    position: relative;
    z-index: 2;
}

/* Legacy social link support */
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

/* Footer Legal Links */
.footer-legal-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
}

.footer-legal-link:hover {
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-legal-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .footer-brand-title {
        font-size: 1.6rem;
    }
    
    .footer-brand-tagline {
        font-size: 0.85rem;
    }
    
    .footer-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-brand-title {
        font-size: 1.4rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
}

.mobile-brand-text h6 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.mobile-brand-text small {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.75rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    padding: 0;
}

.mobile-nav-section {
    margin-bottom: 8px;
}

.mobile-section-title {
    padding: 16px 20px 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

/* Main Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, #f0f9ff, #eff6ff);
    color: #8b5cf6;
    padding-left: 28px;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fbbf24;
}

.nav-link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-link-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-link-arrow {
    font-size: 1rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover .nav-link-arrow {
    transform: translateX(4px);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.quick-action-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.quick-action-icon {
    position: relative;
    margin-bottom: 8px;
}

.quick-action-icon i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.quick-action-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Auth Buttons */
.mobile-auth-buttons {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-auth-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mobile-auth-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
    color: white;
}

.mobile-auth-btn.secondary {
    background: white;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.mobile-auth-btn.secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Contact Info */
.mobile-contact-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.mobile-contact-item:hover {
    background: #f8fafc;
    color: #8b5cf6;
    transform: translateX(4px);
}

.mobile-contact-item i {
    font-size: 1.1rem;
    color: #8b5cf6;
    width: 20px;
    text-align: center;
}

/* Social Links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
}

.mobile-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-social-link.facebook {
    background: #1877f2;
    color: white;
}

.mobile-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.mobile-social-link.twitter {
    background: #1da1f2;
    color: white;
}

.mobile-social-link.youtube {
    background: #ff0000;
    color: white;
}

.mobile-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.mobile-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Account Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #3b82f6;
}

.dropdown-divider {
    margin: 8px 0;
}

/* Mobile Account Links */
.account-links {
    display: flex;
    flex-direction: column;
}

.account-links .mobile-nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.account-links .mobile-nav-link:last-child {
    border-bottom: none;
}

/* Category Tabs */
.category-tabs {
    margin-bottom: 30px;
}

.category-tabs .nav-tabs {
    border-bottom: none;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tabs .nav-link {
    border: none;
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-tabs .nav-link:hover {
    background-color: #e5e5e5;
    color: #3b82f6;
}

.category-tabs .nav-link.active {
    background-image: linear-gradient(to right, #3b82f6, #0d9488);
    color: white;
}

.product-rating {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.625rem 1.25rem;
    }
    
    .category-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}