@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary: #1a2b23;
    --accent: #b88e2f;
    --light-bg: #f9f1e7;
    --white: #ffffff;
    --text: #333333;
    --gray: #7f8c8d;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --danger: #e74c3c;
    --success: #27ae60;
    --warning: #f1c40f;
    --info: #3498db;
}

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

body { 
    font-family: 'Poppins', sans-serif; 
    background: #F8F7F4; 
    color: #222; 
    line-height: 1.6;
    padding-top: 90px; 
}

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

/* Admin Dashboard Styles */
.admin-dashboard {
    padding: 40px 0;
    background: #f4f7f6;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 32px;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-card .label {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.stat-card .value {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.admin-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.admin-section h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 15px;
    background: var(--light-bg);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: #fafafa;
}

.product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-canceled { background: #f8d7da; color: #721c24; }

.status-form {
    display: flex;
    gap: 10px;
}

.status-select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn-update {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}

.btn-update:hover {
    background: var(--accent);
}

.btn-add {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-logout {
    background: #eee;
    color: var(--text);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fdeaea;
    color: #e74c3c;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Admin Form Styles */
.admin-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

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

.admin-form label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.admin-form input:focus,
.admin-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 142, 47, 0.1);
}

.admin-form textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--accent);
    background: var(--light-bg);
}

.file-upload-wrapper i {
    font-size: 30px;
    color: var(--gray);
    margin-bottom: 10px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.error-box {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--accent);
}

.admin-link {
    background: rgba(255,255,255,0.1);
    padding: 2px 10px;
    border-radius: 4px;
}

/* LOGO STYLES */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-biba {
    color: #6B8E23; /* Vert Naturel */
    letter-spacing: 1px;
}

.logo-care {
    color: #B88E2F; /* Or Doré */
    font-size: 22px;
    margin-top: -5px;
    margin-left: 15px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Navbar Premium */
.navbar { 
     background: white; 
     padding: 20px 10%; 
     display: flex; 
     justify-content: space-between; 
     align-items: center; 
     position: fixed; 
     width: 100%; 
     top: 0; 
     box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
     z-index: 1000; 
 } 

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.search-bar {
    flex: 0 1 450px;
    margin: 0 30px;
}

.search-bar form {
    display: flex;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-bar form:focus-within {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(184, 142, 47, 0.1);
}

.search-bar input {
    border: none;
    background: none;
    padding: 10px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.search-bar button {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    position: relative;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

#cart-count, #wishlist-count {
    background: red;
    color: black;
}

.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .search-bar { flex: 1; margin: 0 20px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-image img {
        width: 300px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary {
        margin-right: 0;
        width: 100%;
        max-width: 280px;
    }

    .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .top-bar p { font-size: 11px; }
    .top-bar-links { display: none; }
    .logo img { height: 45px; }
    .search-bar { display: none; }
}

/* HERO */ 
 .hero { 
     display: flex; 
     align-items: center; 
     justify-content: space-between; 
     padding: 100px 10%; 
     min-height: 90vh; 
     background: transparent;
 } 
 
 .hero-content { 
     max-width: 500px; 
 } 
 
 .badge { 
     background: #e8f5e9; 
     color: #2e7d32; 
     padding: 6px 14px; 
     border-radius: 50px; 
     font-size: 14px; 
     display: inline-block; 
     margin-bottom: 20px; 
     text-transform: none;
     letter-spacing: normal;
 } 
 
 .hero h1 { 
     font-size: 50px; 
     margin-bottom: 20px; 
     line-height: 1.2; 
     font-family: 'Poppins', sans-serif;
 } 
 
 .hero p { 
     font-size: 18px; 
     color: #555; 
     margin-bottom: 30px; 
 } 
 
 /* BUTTONS */ 
 .btn-primary { 
     background: linear-gradient(135deg,#6B8E23,#4CAF50); 
     color: white; 
     padding: 14px 28px; 
     border-radius: 10px; 
     text-decoration: none; 
     font-weight: 600; 
     margin-right: 15px; 
     transition: 0.3s; 
 } 
 
 .btn-primary:hover { 
     transform: translateY(-3px); 
     box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
     background: linear-gradient(135deg,#6B8E23,#4CAF50);
 } 
 
 .btn-outline { 
     border: 2px solid #6B8E23; 
     padding: 12px 25px; 
     border-radius: 10px; 
     text-decoration: none; 
     color: #6B8E23; 
     font-weight: 600; 
     margin-left: 0;
 }

 .btn-outline:hover {
     background: #6B8E23;
     color: white;
     transform: translateY(-3px);
 }
 
 /* IMAGE */ 
 .hero-image img { 
     width: 380px; 
     border-radius: 20px; 
     box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
     max-width: 100%;
 }

/* Hero Promo Styles */
.launch-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-price .current-price {
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
    font-family: 'Poppins', sans-serif;
}

.hero-price .old-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.7;
}

/* Product Card Promo Styles */
.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4CAF50;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

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

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.9em;
    opacity: 0.8;
}

.price { 
     font-size: 18px; 
     color: #4CAF50; 
     font-weight: bold; 
 }

/* ANIMATIONS */
.fade-in { 
     opacity: 0; 
     transform: translateY(60px); 
     transition: 1s ease; 
 } 
 
 .fade-in.show { 
     opacity: 1; 
     transform: translateY(0); 
 }

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.product-card { 
     background: white; 
     padding: 30px; 
     border-radius: 20px; 
     box-shadow: 0 15px 40px rgba(0,0,0,0.05); 
     transition: 0.4s; 
     overflow: hidden;
 } 
 
 .product-card:hover { 
     transform: translateY(-8px); 
     box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
 } 
 
 .product-card h3 { 
     margin-top: 15px; 
     font-size: 20px; 
     font-family: 'Poppins', sans-serif;
 } 
 
 .price { 
     font-size: 18px; 
     color: #4CAF50; 
     font-weight: bold; 
 }

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.wishlist-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-view {
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

/* Authentication Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 20px;
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-center {
    display: block;
    margin-bottom: 25px;
}

.logo-center img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.auth-card h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--accent);
    outline: none;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent);
}

.error-msg {
    color: #e74c3c;
    background: #fdf2f2;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.success-box {
    background: #e9f7ef;
    color: #27ae60;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.success-box i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.success-box p {
    font-weight: 500;
    margin-bottom: 20px;
}

.auth-footer {
    margin-top: 25px;
    font-size: 14px;
}

.auth-footer a {
    color: var(--gray);
    text-decoration: none;
}

.auth-footer a:hover {
    color: var(--primary);
}

/* Footer Premium */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .hero-left h1 { font-size: 40px; }
    .hero-right img { max-width: 100%; margin-top: 30px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px;
    }
    .search-bar { width: 100%; order: 3; }
    .nav-links { font-size: 14px; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 50px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    border-radius: 8px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.notification.success {
    border-left: 5px solid #27ae60;
}

.notification.success i {
    color: #27ae60;
}

.notification.error {
    border-left: 5px solid #e74c3c;
}

.notification.error i {
    color: #e74c3c;
}

@media (max-width: 576px) {
    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
