/* ShipNex Cookie Consent Component */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: rgba(15, 43, 76, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    color: white;
    font-family: 'Roboto', sans-serif;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 24px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.cookie-text a {
    color: #2daae1;
    text-decoration: none;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #4ade80;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 5px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-accept {
    background: #4ade80;
    color: #0f2b4c;
}

.btn-accept:hover {
    background: #22d3ee;
    color: #fff;
}

.btn-decline {
    background: #334155;
    color: #fff;
}

.btn-decline:hover {
    background: #64748b;
    color: #fff;
}
