/* Custom CSS for FabricShop Template */

:root {
    --primary-color: #000000;
    --secondary-color: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e7eb;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}/* Account for fixed header */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-dark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 28px 0;
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
}

/* Bootstrap navbar styling */
.navbar-nav .nav-link {
    margin: 0 10px;
}

.navbar-nav:last-child .nav-link {
    margin: 0 5px;
}

.navbar-brand {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a !important;
    text-decoration: none;
    letter-spacing: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.navbar-brand:hover {
    color: #000 !important;
    transform: scale(1.03);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 300;
}

.nav-link {
    color: #2c2c2c !important;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover {
    color: #000 !important;
    transform: translateY(-2px);
}

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

.brand-logo {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 3px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    color: #333;
    transform: scale(1.02);
}



/* Icon styling for navbar */
.navbar-nav .nav-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

/* Badge styling using Bootstrap classes */
.badge {
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    line-height: 1;
}

.cart-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Professional Header Enhancements */
.header-wrapper {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 140px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #007bff;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--text-dark);
}

.notification-info {
    border-left-color: #007bff;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-warning {
    border-left-color: #ffc107;
}

.notification-error {
    border-left-color: #dc3545;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-products .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-products .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

/* Bootstrap responsive grid replaces custom grid */

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

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

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

.product-info {
    padding: 20px;
    text-align: left;
}

.product-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}





.add-to-cart-btn {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.section-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000, #1a1a1a);
}

/* Premium Footer */
.premium-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-footer::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="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand .brand-logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.brand-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 350px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 10px;
}

.newsletter-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.newsletter-signup {
    margin-bottom: 40px;
}

.input-wrapper {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    border-radius: 50px;
}

.email-input::placeholder {
    color: #ffffff;
    font-weight: 300;
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #1a1a1a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
}

.contact-item i {
    width: 20px;
    color: #ffffff;
    font-size: 16px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.newsletter-description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    background-color: white;
    border-radius: 0;
    font-weight: 400;
}

.newsletter-input:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, var(--primary-color));
    transition: left 0.3s ease;
}

.newsletter-btn:hover::before {
    left: 0;
}

.newsletter-btn span {
    position: relative;
    z-index: 1;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Copyright Bar */
.copyright-bar {
    background: #000;
    padding: 15px 0;
    margin-top: 40px;
}

.copyright-text {
    color: #ccc;
    font-size: 13px;
    margin: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Enhanced Footer Improvements */
.modern-footer .container {
    position: relative;
}

.modern-footer .row {
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-brand .brand-logo {
    background: linear-gradient(135deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-contact {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.footer-contact p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 18px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 16px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #333);
    transition: left 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    left: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover::before {
    transform: translateX(3px);
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.newsletter-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    background-color: white;
    border-radius: 0;
    font-weight: 400;
}

.newsletter-input:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, var(--primary-color));
    transition: left 0.3s ease;
}

.newsletter-btn:hover::before {
    left: 0;
}

.newsletter-btn span {
    position: relative;
    z-index: 1;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .modern-footer {
        padding: 50px 0 0;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
        gap: 6px;
        margin-top: 15px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .newsletter-description {
        text-align: center;
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        border-radius: 4px;
        border-right: 1px solid #ddd;
    }
    
    .newsletter-btn {
        border-radius: 4px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .copyright-bar {
        padding: 12px 0;
        margin-top: 30px;
    }
    
    .copyright-text {
        font-size: 12px;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-policies {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-bar {
        text-align: center;
    }
    
    .copyright-bar .row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        padding: 0 10px;
    }
    
    .navbar-brand {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        font-size: 14px;
    }
    
    .navbar-nav:last-child {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .navbar-nav .nav-link i {
        font-size: 14px;
    }
    
    .badge {
        font-size: 8px;
        min-width: 14px;
        height: 14px;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .modern-footer {
        padding: 40px 0 0;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-contact p {
        font-size: 12px;
    }
    
    .social-links {
        gap: 5px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .newsletter-description {
        font-size: 12px;
    }
    
    .payment-icon {
        height: 22px;
    }
    
    .copyright-bar {
        padding: 10px 0;
        margin-top: 25px;
    }
    
    .copyright-text {
        font-size: 11px;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    height: 100vh;
    position: relative;
}

.hero-category {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-category:hover {
    flex: 1.1;
}

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

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.hero-category:hover .category-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.category-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.category-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-btn {
    background: white;
    color: #333;
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.garments-category {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/garmets.png');
    background-size: cover;
    background-position: center;
}

.pillows-category {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/pillows.png');
    background-size: cover;
    background-position: center;
}

.bags-category {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/bag.png');
    background-size: cover;
    background-position: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding-right: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.badge-text {
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
}

.title-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-accent {
    color: #ff6b6b;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
    animation: underlineGrow 2s ease-in-out infinite;
}

@keyframes underlineGrow {
    0%, 100% { width: 100%; }
    50% { width: 120%; }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-grid {
    position: relative;
    height: 600px;
    width: 100%;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.main-card {
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    z-index: 3;
}

.accent-card {
    top: 20%;
    right: 0;
    width: 45%;
    height: 55%;
    z-index: 4;
}

.small-card {
    bottom: 0;
    left: 15%;
    width: 35%;
    height: 40%;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .card-overlay {
    opacity: 1;
}

.price-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 2px;
}

.trend-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 60%;
    width: 80px;
    height: 80px;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Products Page Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::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="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    color: #ffffff;
    opacity: 0.6;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #ffffff;
    opacity: 0.6;
}

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.filter-bar {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.sort-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.1);
}

/* Bootstrap grid system handles responsive layout for products */

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.pagination-wrapper {
    margin-top: 60px;
}

.pagination {
    gap: 8px;
}

.page-link {
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-link:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    background: transparent;
    border-color: #e5e7eb;
    color: #6b7280;
    transform: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar {
        padding: 18px 0;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .navbar-brand {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .nav-link {
        font-size: 13px;
        letter-spacing: 0.6px;
    }
    
    .navbar-nav .nav-link {
        margin: 0 12px;
    }
    
    .navbar-nav:last-child .nav-link {
        margin: 0 9px;
    }
    
    .navbar-nav .nav-link i {
        font-size: 17px;
    }
    
    /* Premium Footer Responsive */
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-brand .brand-logo {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .brand-description {
         color: #ffffff;
         font-size: 15px;
         margin-bottom: 25px;
     }
    
    .social-media {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
         color: #ffffff;
         font-size: 14px;
     }
    
    .newsletter-text {
         color: #ffffff;
         font-size: 15px;
         margin-bottom: 25px;
     }
    
    .email-input {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .subscribe-btn {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }
    
    .contact-item {
         color: #ffffff;
         font-size: 14px;
     }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        gap: 20px;
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 80vh;
    }
    
    .hero-category {
        height: 50vh;
        min-height: 400px;
    }
    
    .category-title {
        font-size: 2.5rem;
    }
    
    .hero-content-wrapper {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-image-grid {
        height: 500px;
    }
    
    .hero-actions {
        gap: 15px;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .navbar-brand {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        padding: 20px 0;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .navbar-nav:last-child {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link i {
        font-size: 16px;
    }
    
    /* Premium Footer Tablet */
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-brand .brand-logo {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .brand-description {
         color: #ffffff;
         font-size: 14px;
         margin: 0 auto 25px;
         max-width: 300px;
     }
    
    .social-media {
        justify-content: center;
        gap: 10px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-heading {
        font-size: 15px;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
         color: #ffffff;
         font-size: 13px;
     }
    
    .newsletter-text {
         color: #ffffff;
         font-size: 14px;
         text-align: center;
         margin-bottom: 20px;
     }
    
    .input-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .email-input {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .subscribe-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
         color: #ffffff;
         justify-content: center;
         font-size: 13px;
     }
    
    .footer-bottom {
        padding: 18px 0;
    }
    
    .footer-bottom .container {
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 15px;
        margin-top: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom-links a {
         color: #ffffff;
         font-size: 13px;
     }
    
    .navbar-brand {
        font-size: 26px;
        letter-spacing: 2px;
    }
    

    
    .nav-link {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding: 12px 0 !important;
    }
    
    .navbar-nav .nav-link i {
        font-size: 16px;
    }
    
    .hero-category {
        height: 45vh;
        min-height: 350px;
    }
    
    .category-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .category-btn {
        padding: 10px 25px;
        font-size: 11px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
        flex-direction: column;
        height: auto;
    }
    
    /* Featured Products Mobile */
    .featured-products {
        padding: 60px 0;
    }
    
    .featured-products .container {
        padding: 0 15px;
    }
    
    .featured-products .section-header {
        margin-bottom: 50px;
    }
    
    .featured-products .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    /* Bootstrap grid handles responsive layout */
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    

    

    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .hero-content-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-image-grid {
        height: 400px;
    }
    
    .main-card {
        width: 80%;
        height: 70%;
        left: 10%;
    }
    
    .accent-card {
        width: 50%;
        height: 50%;
        top: 25%;
        right: 5%;
    }
    
    .small-card {
        width: 40%;
        height: 35%;
        bottom: 5%;
        left: 20%;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar .container {
        padding-left: 0;
    }
    
    .navbar-brand {
        position: static;
        transform: none;
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .navbar-nav .nav-link i {
        font-size: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
    }
    
    .badge {
        font-size: 8px;
        min-width: 14px;
        height: 14px;
    }
    
    /* Products Page Mobile */
    .page-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .filter-bar {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filter-options {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    /* Bootstrap grid handles responsive layout */
    
    .pagination-wrapper {
        margin-top: 40px;
    }
    
    .page-link {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    /* Premium Footer Mobile */
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 35px;
    }
    
    .footer-brand .brand-logo {
        font-size: 24px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .brand-description {
         color: #ffffff;
         font-size: 13px;
         margin: 0 auto 20px;
         max-width: 280px;
         line-height: 1.6;
     }
    
    .social-media {
        justify-content: center;
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
         color: #ffffff;
         font-size: 12px;
     }
    
    .footer-links a:hover {
        padding-left: 15px;
    }
    
    .newsletter-text {
         color: #ffffff;
         font-size: 13px;
         text-align: center;
         margin-bottom: 18px;
         line-height: 1.5;
     }
    
    .input-wrapper {
        max-width: 300px;
        margin: 0 auto;
        padding: 3px;
    }
    
    .email-input {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .subscribe-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .contact-item {
         color: #ffffff;
         justify-content: center;
         font-size: 12px;
         gap: 10px;
     }
    
    .contact-item i {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom .container {
        text-align: center;
    }
    
    .copyright-text {
         color: #ffffff;
         font-size: 12px;
         margin-bottom: 10px;
     }
    
    .footer-bottom-links {
        gap: 12px;
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom-links a {
         color: #ffffff;
         font-size: 11px;
     }
    
    .hero-category {
        height: 40vh;
        min-height: 300px;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 10px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
        margin-bottom: 25px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 200px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image-grid {
        height: 300px;
    }
    
    .main-card {
        width: 90%;
        height: 75%;
        left: 5%;
        top: 5%;
    }
    
    .accent-card {
        width: 55%;
        height: 45%;
        top: 30%;
        right: 0;
    }
    
    .small-card {
        display: none;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 1.75rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Custom utilities */
.shadow-sm {
    box-shadow: var(--shadow-light) !important;
}

.shadow {
    box-shadow: var(--shadow-medium) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-large) !important;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .nav-link {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.login-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 400;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    z-index: 2;
}

.login-form .form-control {
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    height: auto;
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
    border-radius: 4px;
}

.form-check-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #000;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000 0%, var(--primary-color) 100%);
}

.login-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.login-btn:hover .btn-icon {
    transform: translateX(5px);
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.login-divider span {
    background: white;
    padding: 0 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
    background: #fef2f2;
}

.facebook-btn:hover {
    border-color: #4267b2;
    color: #4267b2;
    background: #eff6ff;
}

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

.login-footer p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.signup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 60px;
    }
    
    .login-card {
        padding: 30px 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 25px 20px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-form .form-control {
        padding: 12px 12px 12px 40px;
    }
}